Site Restricter

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

Vad är Site Restricter?

Site Restricter är en Chrome-tillägg utvecklad av LN, och dess huvudfunktion är "Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Site Restricter-förlängningens CRX-fil

Ladda ner Site Restricter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Site Restricter Site Restricter
ID kbokniiapoadjhhkmnlpndgeambahghk
Officiell webbadress https://chromewebstore.google.com/detail/site-restricter/kbokniiapoadjhhkmnlpndgeambahghk
Beskrivning Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity
Filstorlek 10.83 KB
Antal Installationer 50
Aktuell Version 0.0.5
Senast Uppdaterad 2021-10-30
Publiceringsdatum 2021-10-30
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare LN
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}