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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | gnofoiakeednmambnlgcooiflejppmoj |
| 官方網址 | 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 |
| 電子郵箱 | [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:\/\/*\/*"
]
} | |