Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Smart Crawler & AI Rewriter Extension",
"description": "Turn blogs and news into original articles with AI-powered crawling and rewriting.",
"version": "1.0.2",
"manifest_version": 3,
"permissions": [
"tabs",
"storage",
"activeTab",
"scripting",
"downloads"
],
"host_permissions": [
"<all_urls>",
"http:\/\/localhost:3000\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/chatgpt.com\/*",
"https:\/\/chat.openai.com\/*"
],
"js": [
"constants.js",
"content.js"
]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": "iconai48.png"
},
"icons": {
"48": "iconai48.png",
"128": "iconai128.png"
}
}