Site Restricter

Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity

Что такое Site Restricter?

Site Restricter - это расширение Chrome, разработанное LN, и его основная функция - "Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Site Restricter

Скачайте файлы расширений Site Restricter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Too many distractions? Want to limit access to certain sites?
This extension helps you control that. 

Add URLs of sites you don't want to visit.
When you change your mind, just remove them from the list and regain access!

Features: 
- Control access to sites by adding or deleting them individually
- One Click Add / Clear All Functionalities
- Simple Design
- Easy to use                    

Основная информация о расширении

Название Site Restricter Site Restricter
ID kbokniiapoadjhhkmnlpndgeambahghk
Официальный URL https://chromewebstore.google.com/detail/site-restricter/kbokniiapoadjhhkmnlpndgeambahghk
Описание Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity
Размер файла 10.83 KB
Количество установок 50
Текущая Версия 0.0.5
Последнее Обновление 2021-10-30
Дата публикации 2021-10-30
Рейтинг 5.00/5 Всего 1 оценок
Разработчик LN
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Site Restricter",
    "description": "Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity",
    "version": "0.0.5",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Site Restricter"
    },
    "icons": {
        "16": "\/images\/logo_16.png",
        "48": "\/images\/logo_48.png",
        "128": "\/images\/logo_128.png"
    }
}