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文件

下载Joo Janta 200 CoronaVirus Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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