Real Listen On Repeat
Repeat youtube videos
Real Listen On Repeat क्या है?
Real Listen On Repeat https://miltonlaufer.com.ar द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Repeat youtube videos"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Real Listen On Repeat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple button to listen Youtube videos on repeat
एक्सटेंशन की मूल जानकारी
नाम | Real Listen On Repeat |
ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
आधिकारिक URL | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
विवरण | Repeat youtube videos |
फ़ाइल का आकार | 8.98 KB |
स्थापना संख्या | 89 |
वर्तमान संस्करण | 0.0.5.1 |
अंतिम अपडेट | 2017-12-08 |
प्रकाशन तिथि | 2017-12-07 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://miltonlaufer.com.ar |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Real Listen On Repeat", "short_name": "RealListenOnRepeat", "description": "Repeat youtube videos", "version": "0.0.5.1", "manifest_version": 2, "author": "@onwhatthereis", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Click to set on\/off the Youtube Repeat mode" }, "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_start", "js": [ "myscript.js" ] } ] } |