Simple Extension
Let each website can save/switch cookies, switch User-Agent
什么是Simple Extension?
Simple Extension是由gzlock开发的Chrome扩展程序,该扩展的主要功能是“Let each website can save/switch cookies, switch User-Agent”。
扩展截图
下载Simple Extension扩展crx文件
下载Simple Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Switch User-Agent
Custom User-Agent Editor
Save / Switch Cookies 扩展基本信息
| 名称 | |
| ID | ofhbnimjijmnaigdfhhmhegnlmcbilba |
| 官方URL | https://chromewebstore.google.com/detail/simple-extension/ofhbnimjijmnaigdfhhmhegnlmcbilba |
| 简介 | Let each website can save/switch cookies, switch User-Agent |
| 文件大小 | 142 KB |
| 安装次数 | 966 |
| 当前版本 | 0.9.5 |
| 更新时间 | 2023-01-17 |
| 上架时间 | 2020-03-01 |
| 评分 | 4.55/5 共11次评分 |
| 开发者 | gzlock |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/gzlock/simple-extension |
| 帮助页面URL | https://gzlock.github.io/simple-extension |
| 隐私政策页面URL | https://gzlock.github.io/simple-extension |
| 支持的语言 | 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"
]
}
]
} | |