YouTube Enhanced Extension
A third party thing that makes watching YouTube videos a little bit better.
YouTube Enhanced Extension क्या है?
YouTube Enhanced Extension Black Cat Milo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A third party thing that makes watching YouTube videos a little bit better."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Enhanced Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension currently does the following: -Enables emotes for comments (mostly forsen's Twitch, BTTV, and FFZ emotes, both static and animated). -In-video Comments - where if you post a comment with a timestamp at the beginning, it will show up on the video at that time. Emotes are also enabled for this. Okayga :+1:
एक्सटेंशन की मूल जानकारी
नाम | YouTube Enhanced Extension |
ID | oobgojiochekabnidddglbpbikhnfidb |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-enhanced-extensio/oobgojiochekabnidddglbpbikhnfidb |
विवरण | A third party thing that makes watching YouTube videos a little bit better. |
फ़ाइल का आकार | 4.96 MB |
स्थापना संख्या | 615 |
वर्तमान संस्करण | 2.0.2 |
अंतिम अपडेट | 2022-12-23 |
प्रकाशन तिथि | 2021-12-14 |
रेटिंग | 4.78/5 कुल 41 रेटिंग्स |
डेवलपर | Black Cat Milo |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Enhanced Extension", "version": "2.0.2", "manifest_version": 3, "description": "A third party thing that makes watching YouTube videos a little bit better.", "permissions": [ "cookies", "tabs" ], "icons": { "128": "icon.png" }, "host_permissions": [ "https:\/\/www.youtube.com\/" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "emotes\/images\/*" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "global-content-script.js", "setting-container\/setting-container.js", "emotes\/emotes.js", "in-video-comments\/in-video-comments.js" ], "css": [ "setting-container\/setting-container.css", "emotes\/emotes.css", "in-video-comments\/in-video-comments.css" ] } ] } |