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

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

확장 프로그램 사용 설명서

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