Spoiler-free IMDb

Hide IMDb spoilers

什麼是Spoiler-free IMDb?

Spoiler-free IMDb是由Jonathan開發的Chrome擴展程式,該擴展的主要功能是“Hide IMDb spoilers”。

擴展截圖

screenshot
screenshot

下載Spoiler-free IMDb擴展crx文件

下載Spoiler-free IMDb擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Sick of having IMDb tell you exactly how many episodes an actor was in?

If that weren't bad enough, IMDb likes to throw the top rated episode summaries in your face, when you go to a show's page. If you aren't caught up on a show, it is very easy to having something spoiled for you.

Spoiler-free IMDb will make sure you don't see the episode count for anybody on the show, whether you're looking at a TV show page, or the actor's page. We also hide the top rated episode summaries completely.

If you want to see spoilers on a specific page, just click on the icon in the URL bar, and click "Display spoilers for this page" and the page will refresh, and display all details, including any potential spoilers.                    

擴展基本資訊

名稱 Spoiler-free IMDb Spoiler-free IMDb
ID gfdelcngpnloeknplgbinlafdjffknni
官方網址 https://chromewebstore.google.com/detail/spoiler-free-imdb/gfdelcngpnloeknplgbinlafdjffknni
簡介 Hide IMDb spoilers
檔案大小 13.29 KB
安裝次數 47
目前版本 1.0
更新時間 2016-02-26
上架時間 2016-02-26
評分 5.00/5 共 3 次評分
開發者 Jonathan
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiler-free IMDb",
    "description": "Hide IMDb spoilers",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "assets\/icon_16.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "page_action": {
        "default_icon": {
            "16": "assets\/icon_16.png",
            "48": "assets\/icon_48.png"
        },
        "default_title": "Spoiler-free IMDb",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.imdb.com\/*"
            ],
            "js": [
                "remove-spoilers.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "storage",
        "http:\/\/www.imdb.com\/*"
    ]
}