Site Blockr
This extension hides links to, and all content from, the sites you want (alpha)
Что такое Site Blockr?
Site Blockr - это расширение Chrome, разработанное ahallicks, и его основная функция - "This extension hides links to, and all content from, the sites you want (alpha)".
Снимки экрана расширения
Скачать файл CRX расширения Site Blockr
Скачайте файлы расширений Site Blockr в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Site Blockr is an extension used to hide links to, and actual sites from your every day browsing. If you have a site that you don't like, or never want to visit again, just add it to the list of blockd sites in the extension options and you'll never have to see it, or references to it, again. You can also disable all social media sites with one simple button in the extension options! Please note: this extension is in alpha so you may find bugs. If so, please report them to me via feedback or on the support site.
Основная информация о расширении
Название | Site Blockr |
ID | cmldlmfklkdofkaejanfndeepkhlalnf |
Официальный URL | https://chromewebstore.google.com/detail/site-blockr/cmldlmfklkdofkaejanfndeepkhlalnf |
Описание | This extension hides links to, and all content from, the sites you want (alpha) |
Размер файла | 97.08 KB |
Количество установок | 35 |
Текущая Версия | 1.0.1 |
Последнее Обновление | 2014-03-19 |
Дата публикации | 2014-03-19 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | ahallicks |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://bitbucket.org/ahallicks/site-blockr |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Site Blockr", "description": "This extension hides links to, and all content from, the sites you want (alpha)", "version": "1.0.1", "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "notifications" ], "browser_action": { "default_icon": { "19": "img\/icon-on.png", "38": "img\/icon-38-on.png" }, "default_title": "Site Blockr is running" }, "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "js": [ "js\/SiteBlockr.js" ], "css": [ "css\/SiteBlockr.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "icons": { "16": "img\/icon.png", "32": "img\/icon-38.png", "48": "img\/icon-64.png" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "web_accessible_resources": [ "img\/icon-64.png" ], "options_page": "options.html", "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+H" } } } } |