Unspoiler

Don't let the internet spoil your TV! Block headlines, tweets, facebook posts and everything with Unspoiler.

Unspoiler란 무엇입니까?

Unspoiler은(는) https://www.unspoiler.tv에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Don't let the internet spoil your TV! Block headlines, tweets, facebook posts and everything with Unspoiler."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        New Version 2.2! 

* Save your blocked headlines so you can read them later.
* White list any sites you don't want blocked.

Replace any headlines, tweets, facebook posts,with a spoiler warning label.

Click the plugin button in your browser bar and type in the name of any shows or references you don't want to read about.  

You can also just type "unspoil " in the chrome addressbar.

Unspoiler will check any webpage you load for those spoilers and replace them with a warning label which lets you know what it's found.  

When you're ready to read spoilers again you can remove anything you've blocked by clicking the plugin button or going into the unspoiler options.                    

확장 프로그램 기본 정보

이름 Unspoiler Unspoiler
ID oookgbbhgojdebhnmkmhgfagoiknifgi
공식 URL https://chromewebstore.google.com/detail/unspoiler/oookgbbhgojdebhnmkmhgfagoiknifgi
설명 Don't let the internet spoil your TV! Block headlines, tweets, facebook posts and everything with Unspoiler.
파일 크기 73.39 KB
설치 횟수 7,922
현재 버전 2.2.0
최근 업데이트 2014-01-24
출시 날짜 2014-01-23
평점 4.13/5 총 101 개의 평점
개발자 https://www.unspoiler.tv
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Unspoiler",
    "version": "2.2.0",
    "manifest_version": 2,
    "description": "Don't let the internet spoil your TV! Block headlines, tweets, facebook posts and everything with Unspoiler.",
    "homepage_url": "http:\/\/www.unspoiler.tv\/",
    "omnibox": {
        "keyword": "unspoil"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "persistent": false,
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "unspoiler.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "background",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}