Site Locker

to lock your sites and increase productivity

Co to jest Site Locker?

Site Locker to rozszerzenie Chrome opracowane przez Albert-W, a jego główną funkcją jest „to lock your sites and increase productivity”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Site Locker

Pobierz pliki rozszerzeń Site Locker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        It's a super lightweight chrome extension to lock website and increase productivity.

In order to reduce the performance cost from this extension, I did not add any makeups nor jQuery.                    

Podstawowe informacje o rozszerzeniu

Nazwa Site Locker Site Locker
ID folahcfhclpiikbgfkehhbjoppbacbnc
Oficjalny URL https://chromewebstore.google.com/detail/site-locker/folahcfhclpiikbgfkehhbjoppbacbnc
Opis to lock your sites and increase productivity
Rozmiar pliku 141 KB
Liczba instalacji 264
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2020-09-02
Data Publikacji 2020-08-22
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Albert-W
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Albert-W/site-locker
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Site Locker",
    "description": "to lock your sites and increase productivity",
    "version": "1.1.0",
    "manifest_version": 2,
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/favicon16.png",
            "32": "images\/favicon32.png",
            "48": "images\/favicon48.png",
            "128": "images\/favicon128.png"
        }
    },
    "icons": {
        "16": "images\/favicon16.png",
        "32": "images\/favicon32.png",
        "48": "images\/favicon48.png",
        "128": "images\/favicon128.png"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": true
    },
    "options_page": "options.html"
}