Asocial

Make you more concentrated. Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru

什么是Asocial?

Asocial是由isquadev开发的Chrome扩展程序,该扩展的主要功能是“Make you more concentrated. Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru”。

扩展截图

screenshot
screenshot
screenshot

下载Asocial扩展crx文件

下载Asocial扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension hide newsfeed of popular social networks to prevent you being distracted. Private messages in this networks is still available. You may setup your custom schedule for blocking.

E.g. Facebook and VK distract me really hard, so I disable facebook feed all time: 24h per day, 7 days per week. I usually read tech news on Twitter, but don’t want to be distracted at work. So I set up following schedule: Every day, Whole Day, Facebook and VK; Every day, 10am...7pm, Twitter.                    

扩展基本信息

名称 Asocial Asocial
ID cddphjncbagpiodhpbfnkfmhcckkepeg
官方URL https://chromewebstore.google.com/detail/asocial/cddphjncbagpiodhpbfnkfmhcckkepeg
简介 Make you more concentrated. Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru
文件大小 40.64 KB
安装次数 52
当前版本 0.0.3
更新时间 2017-04-29
上架时间 2017-04-29
评分 5.00/5 共3次评分
开发者 isquadev
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/isqua/asocial
支持的语言 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Asocial",
    "default_locale": "en",
    "description": "Make you more concentrated. Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru",
    "version": "0.0.3",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.vk.com\/*"
            ],
            "js": [
                "content\/vk.js"
            ],
            "css": [
                "content\/vk.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content\/fb.js"
            ],
            "css": [
                "content\/fb.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "content\/tw.js"
            ],
            "css": [
                "content\/tw.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*.ok.ru\/*"
            ],
            "js": [
                "content\/ok.js"
            ],
            "css": [
                "content\/ok.css"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "48": "icon-48.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options\/options.html"
}