Asocial

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

Asocial क्या है?

Asocial isquadev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make you more concentrated. Hide newsfeed of popular social networks on schedule. Supported sites: Facebook, Twitter, Vk.com, Ok.ru"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Asocial एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}