Spoiler Preventer

Avoid colliding with spoilers

Co to jest Spoiler Preventer?

Spoiler Preventer to rozszerzenie Chrome opracowane przez Cycle & Carriage, a jego główną funkcją jest „Avoid colliding with spoilers”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Spoiler Preventer

Pobierz pliki rozszerzeń Spoiler Preventer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Introducing Spoiler Preventer, a browser extension that actively blocks out potential spoilers to your favourite television series or movie. Simply turn this on, and you will never encounter another spoiler accidentally again.                    

Podstawowe informacje o rozszerzeniu

Nazwa Spoiler Preventer Spoiler Preventer
ID phncefdjfiecennngpkplhakjeneahai
Oficjalny URL https://chromewebstore.google.com/detail/spoiler-preventer/phncefdjfiecennngpkplhakjeneahai
Opis Avoid colliding with spoilers
Rozmiar pliku 3.51 MB
Liczba instalacji 13
Aktualna Wersja 0.6
Ostatnia Aktualizacja 2019-07-06
Data Publikacji 2019-07-05
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper Cycle & Carriage
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spoiler Preventer",
    "short_name": "SpoilerPreventer",
    "description": "Avoid colliding with spoilers",
    "version": "0.6",
    "author": "Naveen: BBDO Singapore",
    "homepage_url": "https:\/\/www.cyclecarriage.com\/",
    "offline_enabled": true,
    "browser_action": {
        "default_icon": {
            "19": "images\/mz-logo-19x19.png",
            "38": "images\/mz-logo-38x38.png",
            "48": "images\/mz-logo-48x48.png",
            "128": "images\/mz-logo-128x128.png"
        },
        "default_title": "Spoiler Preventer",
        "default_popup": "index.html"
    },
    "icons": {
        "19": "images\/mz-logo-19x19.png",
        "38": "images\/mz-logo-38x38.png",
        "48": "images\/mz-logo-48x48.png",
        "128": "images\/mz-logo-128x128.png"
    },
    "permissions": [
        "activeTab",
        "background",
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.facebook.com\/*",
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "css\/blocker-style.css"
            ],
            "js": [
                "js\/jquery-3.0.0.min.js",
                "js\/blocking.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'"
}