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": "Rewriting text with AI", "version": "1.0.0", "description": "Rewrite your text with AI: copyrighters, bloggers, students, and professionals use it to create unique content and emojis.", "permissions": [ "scripting", "alarms", "background", "storage", "idle", "declarativeNetRequest", "tabs", "unlimitedStorage", "offscreen", "webRequest", "webNavigation" ], "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", "emoji_decoder.js" ], "matches": [ "<all_urls>" ] } ] }