No Spoilers
Hide all spoiler content from youtube.
What is No Spoilers?
No Spoilers is a Chrome extension developed by grayhathacks10, and its main feature is "Hide all spoiler content from youtube.".
Extension Screenshots
Download No Spoilers Extension CRX File
Download No Spoilers 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
This extension lets you add keywords based on which it blurs video cards from youtube. This helps you avoid spoilers and enjoy your youtube experience. You can still choose to watch the blurred video by changing toogling it's visibility.
Extension Basic Information
Name | No Spoilers |
ID | kfbhhaallccnekmpojknfjblchllocgb |
Official URL | https://chromewebstore.google.com/detail/no-spoilers/kfbhhaallccnekmpojknfjblchllocgb |
Description | Hide all spoiler content from youtube. |
File Size | 27.09 KB |
Installation Count | 105 |
Current Version | 1.0.2 |
Last Updated | 2022-05-12 |
Publish Date | 2022-05-09 |
Rating | 5.00/5 Total 4 Ratings |
Developer | grayhathacks10 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/GrayHat12/no-spoilers |
Help Page URL | https://github.com/GrayHat12/no-spoilers |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "No Spoilers", "offline_enabled": true, "description": "Hide all spoiler content from youtube.", "action": { "default_title": "No Spoilers", "default_popup": ".\/html\/popup.html" }, "version": "1.0.2", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ ".\/js\/youtube.js" ] } ], "background": { "service_worker": ".\/js\/background.js" }, "permissions": [ "storage" ], "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" } } |