Cookies Extractor
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.
Cookies Extractorとは何ですか?
Cookies ExtractorはHappyCoderによって開発されたChromeの拡張機能で、その主な機能は「Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.」です。
拡張機能のスクリーンショット
Cookies Extractor拡張機能のCRXファイルをダウンロード
Cookies Extractor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. 拡張機能の基本情報
| 名前 | |
| ID | gdbmkehljhmfcjgbjcfaklnabeccddna |
| 公式URL | https://chromewebstore.google.com/detail/cookies-extractor/gdbmkehljhmfcjgbjcfaklnabeccddna |
| 説明 | Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs. |
| ファイルサイズ | 64.83 KB |
| インストール数 | 635 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2023-05-23 |
| 公開日 | 2023-05-23 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | HappyCoder |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Cookies Extractor",
"description": "Cookies Extractor is a handy tool that helps developers extract website cookies, making it easier for developers to debug APIs.",
"version": "1.0.0",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"tabs",
"cookies"
],
"host_permissions": [
"*:\/\/*\/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": "logo.png"
},
"icons": {
"128": "logo.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"inject.js"
]
}
]
} | |