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, "name": "Text Humanizer Authorprivacy", "version": "2.0", "description": "Humanize text with Authorprivacy", "permissions": [ "contextMenus", "activeTab", "scripting", "commands", "storage" ], "host_permissions": [ "https:\/\/api.authorprivacy.com\/*", "https:\/\/authorprivacy.com\/*" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "48": "icon48.png", "128": "icon128.png" } }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "auth.js", "content.js" ], "css": [ "styles.css" ] }, { "matches": [ "https:\/\/api.authorprivacy.com\/*" ], "js": [ "oauth-callback.js" ] } ], "commands": { "humanize-text": { "suggested_key": { "default": "Alt+Shift+H", "mac": "Alt+Shift+H" }, "description": "Humanize selected text" } }, "web_accessible_resources": [ { "resources": [ "icon128.png" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] }