Speedrun.Com Hide Video
Hide the possibly undesired stream on front page of speedrun.com
What is Speedrun.Com Hide Video?
Speedrun.Com Hide Video is a Chrome extension developed by btrim (Cr extensions), and its main feature is "Hide the possibly undesired stream on front page of speedrun.com".
Extension Screenshots
Download Speedrun.Com Hide Video Extension CRX File
Download Speedrun.Com Hide Video 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
Speedrun.com recently started featuring a stream on its front-page, and I don't particularly want to see this stream show up when I go to speedrun.com's front-page. This extension simply removes the element with id 'twitch'
Extension Basic Information
Name | Speedrun.Com Hide Video |
ID | nlcgfkpgonpkpmibhiadejfhillahpbi |
Official URL | https://chromewebstore.google.com/detail/speedruncom-hide-video/nlcgfkpgonpkpmibhiadejfhillahpbi |
Description | Hide the possibly undesired stream on front page of speedrun.com |
File Size | 8.46 KB |
Installation Count | 24 |
Current Version | 0.0.0.1 |
Last Updated | 2018-12-15 |
Publish Date | 2018-12-14 |
Rating | 1.00/5 Total 1 Ratings |
Developer | btrim (Cr extensions) |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Speedrun.Com Hide Video", "description": "Hide the possibly undesired stream on front page of speedrun.com", "version": "0.0.0.1", "permissions": [ "https:\/\/speedrun.com\/", "https:\/\/www.speedrun.com\/" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.speedrun.com\/", "http:\/\/speedrun.com\/" ], "js": [ "srdc_hide_video.js" ], "run_at": "document_start" } ] } |