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 |
| Eメール | [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"
]
}
]
} | |