Spoiler Block

This extension will black out divs based on specific keywords

Spoiler Block란 무엇입니까?

Spoiler Block은(는) millionhari에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will black out divs based on specific keywords"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Spoiler Block 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Browse the internet free of spoilers! The Spoiler Block extension will censor any keyword match with a black blob instead of blocking the whole page. Click the Spoiler Block icon to get started.

Upcoming features:
- Community driven packages
- Anagram block

What's new in v.1.0.2
- Fixed bug to run script when page is altered in any way                    

확장 프로그램 기본 정보

이름 Spoiler Block Spoiler Block
ID eicnikdpfimhiogckamkklnpligkifhm
공식 URL https://chromewebstore.google.com/detail/spoiler-block/eicnikdpfimhiogckamkklnpligkifhm
설명 This extension will black out divs based on specific keywords
파일 크기 15.07 KB
설치 횟수 290
현재 버전 1.0.2
최근 업데이트 2016-05-07
출시 날짜 2016-05-06
평점 3.50/5 총 2 개의 평점
개발자 millionhari
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Michael Hari",
    "name": "Spoiler Block",
    "description": "This extension will black out divs based on specific keywords",
    "version": "1.0.2",
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "\/options\/spoiler_block_options.html",
    "background": {
        "scripts": [
            "\/backgroundpage\/background.js"
        ]
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Spoiler Block"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "\/styles\/style.css"
            ],
            "js": [
                "\/scripts\/app.js"
            ]
        }
    ]
}