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",
"manifest_version": 3,
"minimum_chrome_version": "96",
"name": "Neuralwriter \u2014 AI Text Paraphraser",
"version": "1.0.5",
"description": "Neuralwriter helps you rephrase, simplify and edit text directly on web pages.",
"permissions": [
"scripting",
"background",
"storage",
"idle",
"declarativeNetRequest",
"tabs",
"offscreen",
"webRequest",
"webNavigation",
"management"
],
"host_permissions": [
"*:\/\/*\/*",
"<all_urls>"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"config.js",
"nw.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"all_frames": true,
"match_about_blank": true
}
],
"icons": {
"128": "128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Rewrite AI",
"default_icon": "128.png"
},
"web_accessible_resources": [
{
"resources": [
"popup.html",
"popup.js",
"rules.json"
],
"matches": [
"<all_urls>"
]
}
]
}