Joo Janta 200 CoronaVirus Filter

Remove CoronaVirus from the Internet.

Joo Janta 200 CoronaVirus Filter란 무엇입니까?

Joo Janta 200 CoronaVirus Filter은(는) Joel Jensen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remove CoronaVirus from the Internet."입니다.

확장 프로그램 스크린샷

screenshot

Joo Janta 200 CoronaVirus Filter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Filters out sections in webpages "coronavirus or pandemic or covid or quarantine" to help the mental health of people who would rather only check news once a day. If your cup runs over with worry, this is for you.                    

확장 프로그램 기본 정보

이름 Joo Janta 200 CoronaVirus Filter Joo Janta 200 CoronaVirus Filter
ID illaolgbgeofimehphgoccmffbokkcip
공식 URL https://chrome.google.com/webstore/detail/joo-janta-200-coronavirus/illaolgbgeofimehphgoccmffbokkcip
설명 Remove CoronaVirus from the Internet.
파일 크기 1.45 MB
설치 횟수 11
현재 버전 1.0.0
최근 업데이트 2020-03-23
출시 날짜 2020-03-20
평점 5.00/5 총 2 개의 평점
개발자 Joel Jensen
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/joeljensen/joo-janta-200-coronavirus-filter
도움말 페이지 URL https://github.com/joeljensen/joo-janta-200-coronavirus-filter
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Joo Janta 200 CoronaVirus Filter",
    "version": "1.0.0",
    "description": "Remove CoronaVirus from the Internet.",
    "page_action": {
        "default_icon": "images\/icon-19x19.png",
        "default_title": "Warning: CoronaVirus news is on this page!"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_globs": [
                "*:\/\/*github.com*",
                "*:\/\/cdc.gov"
            ],
            "js": [
                "js\/jquery-3.1.1.min.js",
                "js\/filter.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "images\/icon-16x16.png",
        "19": "images\/icon-19x19.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png",
        "130": "images\/icon-130x130.png",
        "550": "images\/icon-550x550.png"
    },
    "background": {
        "persistent": false,
        "page": "background.html"
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}