Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
Time Viewer for YouTube Live क्या है?
Time Viewer for YouTube Live https://fiahfy.blogspot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome Extension for Viewing Time on YouTube Live."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Time Viewer for YouTube Live एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
- Display video publishing time. - Display time on seek bar and chat.
एक्सटेंशन की मूल जानकारी
नाम | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
आधिकारिक URL | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
विवरण | Chrome Extension for Viewing Time on YouTube Live. |
फ़ाइल का आकार | 25.52 KB |
स्थापना संख्या | 249 |
वर्तमान संस्करण | 0.0.6 |
अंतिम अपडेट | 2023-01-01 |
प्रकाशन तिथि | 2021-06-21 |
रेटिंग | 4.67/5 कुल 3 रेटिंग्स |
डेवलपर | https://fiahfy.blogspot.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] }, { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat_replay*" ], "all_frames": true, "js": [ "content-script-frame.js" ], "css": [ "content-script-frame.css" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Time Viewer for YouTube Live", "description": "Chrome Extension for Viewing Time on YouTube Live.", "version": "0.0.6" } |