Spoiler Specs
Removes spoilery thumbnails and descriptions on streaming sites
Cos'è Spoiler Specs?
Spoiler Specs è un'estensione di Chrome sviluppata da tomlumperson, e la sua funzione principale è "Removes spoilery thumbnails and descriptions on streaming sites".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Spoiler Specs
Scarica i file di estensione Spoiler Specs in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Removes spoilery thumbnails and descriptions on HBO, Netflix, Hulu, Crunchyroll, and Amazon.
Informazioni di Base sull'Estensione
Nome | Spoiler Specs |
ID | ooegdkkipjbdfhdkamblcfljmolhakbo |
URL Ufficiale | https://chromewebstore.google.com/detail/spoiler-specs/ooegdkkipjbdfhdkamblcfljmolhakbo |
Descrizione | Removes spoilery thumbnails and descriptions on streaming sites |
Dimensione del File | 28.69 KB |
Conteggio Installazioni | 117 |
Versione Corrente | 1.1.3 |
Ultimo Aggiornamento | 2021-05-28 |
Data di Pubblicazione | 2019-10-18 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | tomlumperson |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.tomlum.com/spoilerspecs |
Lingue Supportate | 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" ] } ] } |