Hide it now!
Hide unwanted element on any websites!
Что такое Hide it now!?
Hide it now! - это расширение Chrome, разработанное supertomlai, и его основная функция - "Hide unwanted element on any websites!".
Снимки экрана расширения
Скачать файл CRX расширения Hide it now!
Скачайте файлы расширений Hide it now! в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Hide unwanted ADs or view blocking stuff on the webpage on a mouse click! This Extension will add a right click menu item which let you instantly hide the selected AD/item on the displayed webpage! User may be required to reload webpages to use this extension after installation.
Основная информация о расширении
Название | Hide it now! |
ID | ielggdbamjmfoiennlibhkknhopncipl |
Официальный URL | https://chromewebstore.google.com/detail/hide-it-now/ielggdbamjmfoiennlibhkknhopncipl |
Описание | Hide unwanted element on any websites! |
Размер файла | 28.92 KB |
Количество установок | 168 |
Текущая Версия | 1.0 |
Последнее Обновление | 2015-03-19 |
Дата публикации | 2015-03-18 |
Рейтинг | 3.63/5 Всего 8 оценок |
Разработчик | supertomlai |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hide it now!", "description": "Hide unwanted element on any websites!", "omnibox": { "keyword": "hide" }, "icons": { "16": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "version": "1.0", "minimum_chrome_version": "9", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "mouseclick.js" ], "css": [ "hide_element.css" ] } ], "permissions": [ "activeTab", "contextMenus" ] } |