Spoiler-free IMDb

Hide IMDb spoilers

Spoiler-free IMDb क्या है?

Spoiler-free IMDb Jonathan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide IMDb spoilers"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Spoiler-free IMDb एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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\/*"
    ]
}