Spoiler Specs
Removes spoilery thumbnails and descriptions on streaming sites
What is Spoiler Specs?
Spoiler Specs is a Chrome extension developed by tomlumperson, and its main feature is "Removes spoilery thumbnails and descriptions on streaming sites".
Extension Screenshots
Download Spoiler Specs Extension CRX File
Download Spoiler Specs extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Removes spoilery thumbnails and descriptions on HBO, Netflix, Hulu, Crunchyroll, and Amazon.
Extension Basic Information
Name | Spoiler Specs |
ID | ooegdkkipjbdfhdkamblcfljmolhakbo |
Official URL | https://chromewebstore.google.com/detail/spoiler-specs/ooegdkkipjbdfhdkamblcfljmolhakbo |
Description | Removes spoilery thumbnails and descriptions on streaming sites |
File Size | 28.69 KB |
Installation Count | 117 |
Current Version | 1.1.3 |
Last Updated | 2021-05-28 |
Publish Date | 2019-10-18 |
Rating | 5.00/5 Total 2 Ratings |
Developer | tomlumperson |
[email protected] | |
Payment Type | free |
Extension Website | https://www.tomlum.com/spoilerspecs |
Supported Languages | 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" ] } ] } |