Startup Cookie Destroyer

Remove unwanted cookies and site data on start-up, and manually from the toolbar.

Startup Cookie Destroyerとは何ですか?

Startup Cookie DestroyerはAaron Horlerによって開発されたChromeの拡張機能で、その主な機能は「Remove unwanted cookies and site data on start-up, and manually from the toolbar.」です。

拡張機能のスクリーンショット

screenshot

Startup Cookie Destroyer拡張機能のCRXファイルをダウンロード

Startup Cookie Destroyer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Remove unwanted cookies and all other site data on startup, and manually from the extension toolbar.

Wanted cookies are defined using a white list.

GitHub source - https://github.com/aghorler/Startup-Cookie-Destroyer

CHANGELOG

1.2.0 - Add cacheStorage option to browsing data clear, attempted return to Chrome Web Store.
1.1.0 - Automatic option saving.
1.0.3 - Logic improvements. Hover descriptions on options page.
1.0.2 - The extension no longer clears all cookies on installation.
1.0.1 - First release.                    

拡張機能の基本情報

名前 Startup Cookie Destroyer Startup Cookie Destroyer
ID gnofoiakeednmambnlgcooiflejppmoj
公式URL https://chromewebstore.google.com/detail/startup-cookie-destroyer/gnofoiakeednmambnlgcooiflejppmoj
説明 Remove unwanted cookies and site data on start-up, and manually from the toolbar.
ファイルサイズ 11.96 KB
インストール数 214
現在のバージョン 1.2.0
最終更新日 2022-02-28
公開日 2018-05-16
評価 4.33/5 合計 6 レビュー
開発者 Aaron Horler
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/aghorler/Startup-Cookie-Destroyer
ヘルプページのURL https://github.com/aghorler/Startup-Cookie-Destroyer
プライバシーポリシーページのURL https://aaronhorler.com/privacy.txt
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Startup Cookie Destroyer",
    "version": "1.2.0",
    "manifest_version": 2,
    "description": "Remove unwanted cookies and site data on start-up, and manually from the toolbar.",
    "background": {
        "scripts": [
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "\/img\/icon128.png"
    },
    "browser_action": {
        "name": "Clear cookies and site data."
    },
    "options_ui": {
        "page": "\/html\/options.html",
        "chrome_style": true,
        "open_in_tab": false
    },
    "permissions": [
        "browsingData",
        "storage",
        "cookies",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}