Spoiler Specs
Removes spoilery thumbnails and descriptions on streaming sites
Was ist Spoiler Specs?
Spoiler Specs ist eine Chrome-Erweiterung, die von tomlumperson entwickelt wurde, und ihr Hauptmerkmal ist "Removes spoilery thumbnails and descriptions on streaming sites".
Erweiterungsscreenshots
Spoiler Specs-Erweiterungs-CRX-Datei herunterladen
Laden Sie Spoiler Specs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Removes spoilery thumbnails and descriptions on HBO, Netflix, Hulu, Crunchyroll, and Amazon.
Grundlegende Informationen zur Erweiterung
Name | Spoiler Specs |
ID | ooegdkkipjbdfhdkamblcfljmolhakbo |
Offizielle URL | https://chromewebstore.google.com/detail/spoiler-specs/ooegdkkipjbdfhdkamblcfljmolhakbo |
Beschreibung | Removes spoilery thumbnails and descriptions on streaming sites |
Dateigröße | 28.69 KB |
Installationsanzahl | 117 |
Aktuelle Version | 1.1.3 |
Letztes Update | 2021-05-28 |
Veröffentlichungsdatum | 2019-10-18 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | tomlumperson |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.tomlum.com/spoilerspecs |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Spoiler Specs", "short_name": "Spoiler Specs", "version": "1.1.3", "manifest_version": 2, "description": "Removes spoilery thumbnails and descriptions on streaming sites", "homepage_url": "http:\/\/www.TomLum.com\/spoilerspecs", "icons": { "128": "icons\/icon128on.png" }, "default_locale": "en", "browser_action": { "default_icon": "icons\/icon128on.png", "default_title": "Spoiler Specs", "default_popup": "popup.html" }, "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/*.hulu.com\/*" ], "js": [ "src\/inject\/hulu.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.amazon.com\/*" ], "js": [ "src\/inject\/amazon.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.hbogo.com\/*" ], "js": [ "src\/inject\/hbogo.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.hbomax.com\/*" ], "js": [ "src\/inject\/hbomax.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.hbonow.com\/*" ], "js": [ "src\/inject\/hbogo.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.netflix.com\/*" ], "js": [ "src\/inject\/netflix.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.crunchyroll.com\/*" ], "js": [ "src\/inject\/crunchyroll.js" ] } ] } |