Selective Scrubber
Those secret sites? Begone from my history!
Что такое Selective Scrubber?
Selective Scrubber - это расширение Chrome, разработанное Jake Lee, и его основная функция - "Those secret sites? Begone from my history!".
Снимки экрана расширения
Скачать файл CRX расширения Selective Scrubber
Скачайте файлы расширений Selective Scrubber в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Selective Scrubber instantly removes any set of specific sites / phrases from your history with a single click. No longer do you need to delete all of your history for the last hour, just delete the specific sites you don't want to see! This project is open source, feel free to suggest changes on GitHub: https://github.com/jakesteam/selectivescrubber Alternatively, email me at [email protected]
Основная информация о расширении
Название | Selective Scrubber |
ID | ljjdcbfpdmjelppcfeiadnjagdhompkb |
Официальный URL | https://chromewebstore.google.com/detail/selective-scrubber/ljjdcbfpdmjelppcfeiadnjagdhompkb |
Описание | Those secret sites? Begone from my history! |
Размер файла | 18.99 KB |
Количество установок | 42 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2017-01-31 |
Дата публикации | 2017-01-31 |
Рейтинг | 5.00/5 Всего 4 оценок |
Разработчик | Jake Lee |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/JakeSteam/SelectiveScrubber |
URL страницы помощи | https://github.com/JakeSteam/SelectiveScrubber |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Selective Scrubber", "description": "Those secret sites? Begone from my history!", "version": "1.0.0", "homepage_url": "https:\/\/github.com\/JakeSteam\/SelectiveScrubber", "icons": { "48": "images\/icon_48.png", "96": "images\/icon_96.png" }, "permissions": [ "history", "storage" ], "background": { "persistent": false, "scripts": [ "js\/clear_history.js" ] }, "browser_action": { "default_icon": "images\/icon_96.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |