Youtube Hider
This is a Chrome extension to hide videos and images on YouTube.
Youtube Hider क्या है?
Youtube Hider Miri Ahn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a Chrome extension to hide videos and images on YouTube."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can toggle a visibility of a group of Youtube elements on the list below, respectively: - Video - Video thumbnail - User profile photo Update 1.1 (2019/11/25) - Added a button to enable or disable all checkboxes.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | cnaimccmiafebfliaiefkdfmdffgmjph |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph |
विवरण | This is a Chrome extension to hide videos and images on YouTube. |
फ़ाइल का आकार | 8.85 KB |
स्थापना संख्या | 60 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2019-11-29 |
प्रकाशन तिथि | 2019-11-29 |
रेटिंग | 4.25/5 कुल 4 रेटिंग्स |
डेवलपर | Miri Ahn |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/kameru/youtube-hider/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Hider", "version": "1.1", "description": "This is a Chrome extension to hide videos and images on YouTube.", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "hidingController.js" ] } ], "web_accessible_resources": [ "hide_thumb.css", "hide_video.css", "hide_icon.css", "popup.js", "hidingController.js" ], "permissions": [ "activeTab", "storage", "declarativeContent" ], "page_action": { "default_icon": "images\/hide.png", "default_popup": "popup.html" }, "manifest_version": 2 } |