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
官方網址 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"
}