YouTube Repeat Button
YouTube Repeat Button.
YouTube Repeat Button क्या है?
YouTube Repeat Button Vladislav Tupikin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "YouTube Repeat Button."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Repeat Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Google Chrome extension that embeds a video repeat button directly into the YouTube player
एक्सटेंशन की मूल जानकारी
नाम | YouTube Repeat Button |
ID | mpaeilkfigmkompknfmmnojgkbkahfdk |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-repeat-button/mpaeilkfigmkompknfmmnojgkbkahfdk |
विवरण | YouTube Repeat Button. |
फ़ाइल का आकार | 15.33 KB |
स्थापना संख्या | 394 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2021-01-05 |
प्रकाशन तिथि | 2019-12-20 |
रेटिंग | 3.00/5 कुल 4 रेटिंग्स |
डेवलपर | Vladislav Tupikin |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/MrRefactoring/youtube-repeat |
समर्थित भाषाएँ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "1.0.0", "default_locale": "en", "icons": { "16": "src\/images\/icons\/icon16.png", "48": "src\/images\/icons\/icon48.png", "128": "src\/images\/icons\/icon128.png" }, "content_scripts": [ { "run_at": "document_end", "css": [ "src\/styles.css" ], "js": [ "src\/helpers\/onElementHeightChange.js", "src\/helpers\/onRepeatClick.js", "src\/helpers\/removeTitle.js", "src\/helpers\/resetTitle.js", "src\/helpers\/createButton.js", "src\/helpers\/patcher.js", "src\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "permissions": [ "tabs" ] } |