Minimis extended cookie management
Manage cookies using Chrome API
Minimis extended cookie managementとは何ですか?
Minimis extended cookie managementはIulian Ghionoiuによって開発されたChromeの拡張機能で、その主な機能は「Manage cookies using Chrome API」です。
Minimis extended cookie management拡張機能のCRXファイルをダウンロード
Minimis extended cookie management拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This project is an extension of "Cookie Test" form the Google API Examples.
The "Minimis" extended cookie management uses content injection to allow a page to erase all it's cookies (especially the HttpOnly ones).
The loaded page only needs to issue the command:
window.postMessage({ type: "ERASE_COOKIES", text: document.domain }, "*"); 拡張機能の基本情報
| 名前 | |
| ID | bphmaipfhiaagcfgdpbbclblomlgjfda |
| 公式URL | https://chrome.google.com/webstore/detail/minimis-extended-cookie-m/bphmaipfhiaagcfgdpbbclblomlgjfda |
| 説明 | Manage cookies using Chrome API |
| ファイルサイズ | 9.76 KB |
| インストール数 | 14 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2013-08-24 |
| 公開日 | 2013-08-24 |
| 開発者 | Iulian Ghionoiu |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Minimis extended cookie management",
"version": "0.1",
"description": "Manage cookies using Chrome API",
"permissions": [
"cookies",
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"icons": {
"16": "ro.png",
"48": "ro.png",
"128": "ro.png"
},
"browser_action": {
"default_icon": "ro.png"
},
"background": {
"scripts": [
"class\/CookieCache.class.js",
"class\/CookieHandler.class.js",
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_end"
}
]
} | |