Simple Extension
Let each website can save/switch cookies, switch User-Agent
What is Simple Extension?
Simple Extension is a Chrome extension developed by gzlock, and its main feature is "Let each website can save/switch cookies, switch User-Agent".
Extension Screenshots
Download Simple Extension Extension CRX File
Download Simple Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Switch User-Agent Custom User-Agent Editor Save / Switch Cookies
Extension Basic Information
Name | Simple Extension |
ID | ofhbnimjijmnaigdfhhmhegnlmcbilba |
Official URL | https://chromewebstore.google.com/detail/simple-extension/ofhbnimjijmnaigdfhhmhegnlmcbilba |
Description | Let each website can save/switch cookies, switch User-Agent |
File Size | 142 KB |
Installation Count | 966 |
Current Version | 0.9.5 |
Last Updated | 2023-01-17 |
Publish Date | 2020-03-01 |
Rating | 4.55/5 Total 11 Ratings |
Developer | gzlock |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/gzlock/simple-extension |
Help Page URL | https://gzlock.github.io/simple-extension |
Privacy Policy Page URL | https://gzlock.github.io/simple-extension |
Supported Languages | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "description": "__MSG_extensionDesc__", "version": "0.9.5", "manifest_version": 3, "minimum_chrome_version": "100", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "default_locale": "en", "incognito": "split", "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "background": { "type": "module", "service_worker": "src\/background\/index.js" }, "options_page": "src\/options\/options.html", "action": [], "permissions": [ "contextMenus", "tabs", "activeTab", "cookies", "storage", "scripting", "declarativeNetRequest" ], "declarative_net_request": { "rule_resources": [] }, "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/content\/index.js" ] } ] } |