Socialless

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

Что такое Socialless?

Socialless - это расширение Chrome, разработанное bvdc, и его основная функция - "Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Socialless

Скачайте файлы расширений Socialless в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

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

Основная информация о расширении

Название Socialless Socialless
ID mpknphnpehbcbcpocebpggcbfamnpkbf
Официальный URL https://chrome.google.com/webstore/detail/socialless/mpknphnpehbcbcpocebpggcbfamnpkbf
Описание Be more productive by turning social media off. Simply click the extension button and toggle to block the websites you want.
Размер файла 45.65 KB
Количество установок 56
Текущая Версия 0.0.1
Последнее Обновление 2016-09-06
Дата публикации 2016-09-06
Рейтинг 5.00/5 Всего 1 оценок
Разработчик bvdc
Тип оплаты free
Поддерживаемые языки 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\/*"
    ]
}