YouTube Distraction Killer
Remove distracting elements from YouTube's layout
YouTube Distraction Killer क्या है?
YouTube Distraction Killer nizioleque द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove distracting elements from YouTube's layout"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Distraction Killer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Do you find yourself watching cute kitten videos instead of educational content all the time? Get rid of all the reccomendations, suggestions, comments and other tempting buttons! Easily choose what is hidden using the options menu! If you experience any issues, please feel free to email me with a bug report.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Distraction Killer |
ID | pahjidceabkifggkmokpmlmhoaiflaeh |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh |
विवरण | Remove distracting elements from YouTube's layout |
फ़ाइल का आकार | 28.3 KB |
स्थापना संख्या | 153 |
वर्तमान संस्करण | 1.3 |
अंतिम अपडेट | 2022-04-19 |
प्रकाशन तिथि | 2022-04-19 |
रेटिंग | 4.75/5 कुल 4 रेटिंग्स |
डेवलपर | nizioleque |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.3", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false } } |