CookieSmash
Quickly remove all cookies associate on a site.
什麼是CookieSmash?
CookieSmash是由Jack Nguyen開發的Chrome擴展程式,該擴展的主要功能是“Quickly remove all cookies associate on a site.”。
下載CookieSmash擴展crx文件
下載CookieSmash擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Click the cookie icon and all cookies for the current site will be deleted and the page will refresh. This was developed because unlike other cookie removers it did not refresh the page. I am debating whether to have a popup when the extension deletes everything because as a developer I clear cookies constantly and it would get annoying to have a warning every time. But please let me know what you guys think. Hopefully this helps someone.
擴展基本資訊
名稱 | |
ID | nnnahedhiocibebgbmfiknmjeoflhdfe |
官方網址 | https://chrome.google.com/webstore/detail/cookiesmash/nnnahedhiocibebgbmfiknmjeoflhdfe |
簡介 | Quickly remove all cookies associate on a site. |
檔案大小 | 67.73 KB |
安裝次數 | 149 |
目前版本 | 0.1 |
更新時間 | 2015-06-02 |
上架時間 | 2015-06-01 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Jack Nguyen |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CookieSmash", "version": "0.1", "description": "Quickly remove all cookies associate on a site.", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png", "default_title": "CookieSmash" }, "permissions": [ "cookies", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] } } |