Socialless

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

Cos'è Socialless?

Socialless è un'estensione di Chrome sviluppata da bvdc, e la sua funzione principale è "Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Socialless

Scarica i file di estensione Socialless in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

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

Informazioni di Base sull'Estensione

Nome Socialless Socialless
ID mpknphnpehbcbcpocebpggcbfamnpkbf
URL Ufficiale https://chrome.google.com/webstore/detail/socialless/mpknphnpehbcbcpocebpggcbfamnpkbf
Descrizione Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.
Dimensione del File 45.65 KB
Conteggio Installazioni 56
Versione Corrente 0.0.1
Ultimo Aggiornamento 2016-09-06
Data di Pubblicazione 2016-09-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore bvdc
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}