Socialless

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

Vad är Socialless?

Socialless är en Chrome-tillägg utvecklad av bvdc, och dess huvudfunktion är "Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.".

Tilläggsskärmbilder

screenshot

Ladda ner Socialless-förlängningens CRX-fil

Ladda ner Socialless-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

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

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

Grundläggande Information om Tillägg

Namn Socialless Socialless
ID mpknphnpehbcbcpocebpggcbfamnpkbf
Officiell webbadress https://chrome.google.com/webstore/detail/socialless/mpknphnpehbcbcpocebpggcbfamnpkbf
Beskrivning Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.
Filstorlek 45.65 KB
Antal Installationer 56
Aktuell Version 0.0.1
Senast Uppdaterad 2016-09-06
Publiceringsdatum 2016-09-06
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare bvdc
Betalningssätt free
Stödda Språk 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\/*"
    ]
}