Youtube Repeat
Save your preference once and it will repeat the video for your favourite songs
Youtube Repeat क्या है?
Youtube Repeat mercury200Hg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save your preference once and it will repeat the video for your favourite songs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Repeat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Single repeat choice for all YouTube links. - Just save your preference once and then enjoy repeated playback of your favorite songs and videos on YouTube without reloading your webpage or requirement to consume additional Internet usage. Icons used are made by Freepick from www.flaticons.com
एक्सटेंशन की मूल जानकारी
नाम | Youtube Repeat |
ID | mbimaenpniemflhmhbahldkfppflbcjh |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-repeat/mbimaenpniemflhmhbahldkfppflbcjh |
विवरण | Save your preference once and it will repeat the video for your favourite songs |
फ़ाइल का आकार | 8.63 KB |
स्थापना संख्या | 361 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2017-03-12 |
प्रकाशन तिथि | 2017-03-12 |
रेटिंग | 4.33/5 कुल 6 रेटिंग्स |
डेवलपर | mercury200Hg |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Repeat", "browser_action": { "default_icon": "loop-arrow-32.png", "default_popup": "popup.html", "default_title": "Click repeat" }, "description": "Save your preference once and it will repeat the video for your favourite songs", "icons": { "128": "loop-arrow-128.png", "32": "loop-arrow-32.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "content.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "tabs", "webNavigation", "*:\/\/*.youtube.com\/*", "storage" ], "version": "1.0.0" } |