Video Blocker
Video Blocker
Video Blocker क्या है?
Video Blocker Ran Leonard द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Video Blocker"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Video Blocker allows you to hide videos from channels that you want to prevent your kids or yourself from watching. You can specify these channels by going to one of their videos, clicking the extension at top right of the Chrome browser, and clicking the 'block' button. If you find any bugs or have any other problems with this extension, please notify me via the support option on the details-tab on this page. It is very difficult to help you out if you report a problem via the comments, since there is no way for me to respond to you. Good luck and happy video blocking!
एक्सटेंशन की मूल जानकारी
नाम | |
ID | hficoaacnnfallmajhbmkakebpfllpbi |
आधिकारिक URL | https://chrome.google.com/webstore/detail/video-blocker/hficoaacnnfallmajhbmkakebpfllpbi |
विवरण | Video Blocker |
फ़ाइल का आकार | 161 KB |
स्थापना संख्या | 3,000 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2017-10-26 |
प्रकाशन तिथि | 2017-10-26 |
रेटिंग | 2.04/5 कुल 23 रेटिंग्स |
डेवलपर | Ran Leonard |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Video Blocker", "description": "Video Blocker", "version": "1.0.4", "permissions": [ "tabs", "storage", "contextMenus" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png" }, "browser_action": { "default_popup": "popup.html", "title": "test" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*" ], "js": [ "js\/jquery-2.0.3.min.js", "js\/analytics.js", "js\/custom_content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/jquery-2.0.3.min.js", "js\/analytics.js", "js\/background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |