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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}