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
Eメール [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"
}