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 |
| 官方網址 | 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"
]
}
]
} | |