Medium Banner Remover

A simple addon to remove medium article banners that clutter the screen

Medium Banner Removerとは何ですか?

Medium Banner RemoverはUnknownによって開発されたChromeの拡張機能で、その主な機能は「A simple addon to remove medium article banners that clutter the screen」です。

拡張機能のスクリーンショット

screenshot
screenshot

Medium Banner Remover拡張機能のCRXファイルをダウンロード

Medium Banner Remover拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A simple browser addon to remove some annoying banners from medium articles

code here: https://github.com/colinlcrawford/medium-banner-remover-browser-extn                    

拡張機能の基本情報

名前 Medium Banner Remover Medium Banner Remover
ID bophhfkkhlfjikhlpbjkiiknaepnkkcc
公式URL https://chromewebstore.google.com/detail/medium-banner-remover/bophhfkkhlfjikhlpbjkiiknaepnkkcc
説明 A simple addon to remove medium article banners that clutter the screen
ファイルサイズ 12.24 KB
インストール数 44
現在のバージョン 0.0.5
最終更新日 2019-10-20
公開日 2019-10-19
評価 4.00/5 合計 2 レビュー
開発者 Unknown
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Medium Banner Remover",
    "version": "0.0.5",
    "description": "A simple addon to remove medium article banners that clutter the screen",
    "homepage_url": "https:\/\/github.com\/colinlcrawford\/medium-banner-remover-browser-extn",
    "author": "Colin Crawford",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icons\/icon-128.png",
        "default_title": "Medium Banner Remover!"
    },
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{a77fcc50-8ec5-4c21-9232-45eaa3be464c}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-scripts\/content-script.js"
            ]
        }
    ]
}