CookieSmash
Quickly remove all cookies associate on a site.
Что такое CookieSmash?
CookieSmash - это расширение Chrome, разработанное Jack Nguyen, и его основная функция - "Quickly remove all cookies associate on a site.".
Скачать файл CRX расширения CookieSmash
Скачайте файлы расширений 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 |
Официальный URL | 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" ] } } |