Socialless

Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.

Co to jest Socialless?

Socialless to rozszerzenie Chrome opracowane przez bvdc, a jego główną funkcją jest „Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Socialless

Pobierz pliki rozszerzeń Socialless 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

                        List of sites to block:
- Facebook
- Twitter
- Instagram
- Youtube
- Foursquare
- Pintrest
- Tumblr
- LinkedIn
- Reddit

More features coming soon.
- Add blocks yourself
- Custom block page                    

Podstawowe informacje o rozszerzeniu

Nazwa Socialless Socialless
ID mpknphnpehbcbcpocebpggcbfamnpkbf
Oficjalny URL https://chrome.google.com/webstore/detail/socialless/mpknphnpehbcbcpocebpggcbfamnpkbf
Opis Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.
Rozmiar pliku 45.65 KB
Liczba instalacji 56
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2016-09-06
Data Publikacji 2016-09-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper bvdc
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Socialless",
    "description": "Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": ".\/icons\/tog.png",
        "default_popup": "fib.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "init.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/www.facebook.com\/*",
        "*:\/\/twitter.com\/*",
        "*:\/\/www.youtube.com\/*",
        "*:\/\/www.instagram.com\/*",
        "*:\/\/www.pinterest.com\/*",
        "*:\/\/www.tumblr.com\/*",
        "*:\/\/foursquare.com\/*",
        "*:\/\/www.linkedin.com\/*",
        "*:\/\/www.reddit.com\/*"
    ]
}