Socialless

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

Was ist Socialless?

Socialless ist eine Chrome-Erweiterung, die von bvdc entwickelt wurde, und ihr Hauptmerkmal ist "Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.".

Erweiterungsscreenshots

screenshot

Socialless-Erweiterungs-CRX-Datei herunterladen

Laden Sie Socialless-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

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

Grundlegende Informationen zur Erweiterung

Name Socialless Socialless
ID mpknphnpehbcbcpocebpggcbfamnpkbf
Offizielle URL https://chrome.google.com/webstore/detail/socialless/mpknphnpehbcbcpocebpggcbfamnpkbf
Beschreibung Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.
Dateigröße 45.65 KB
Installationsanzahl 56
Aktuelle Version 0.0.1
Letztes Update 2016-09-06
Veröffentlichungsdatum 2016-09-06
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler bvdc
Zahlungsart free
Unterstützte Sprachen 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\/*"
    ]
}