Auto Replay for YouTube™
Automatically repeat your favourite YouTube video.
Auto Replay for YouTube™ क्या है?
Auto Replay for YouTube™ Lynn द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically repeat your favourite YouTube video."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Replay for YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Auto Replay for YouTube™ is an extension that allows you to automatically repeat your favorite YouTube video. This extension also allows you to automatically start and end a YouTube video at custom time slots. To disable the auto loop, please open the toolbar popup and press the - N - button (normal playback). Please note that for the auto loop to work, the current video needs to come to an end (or a custom end time slot). This extension applies the loop setting for all YouTube videos open in tabs. Therefore, it is recommended to open YouTube in one tab only while this addon is active. To report bugs, please use the addon's homepage (https://mybrowseraddon.com/youtube-auto-loop.html) and fill out the bug report form.
एक्सटेंशन की मूल जानकारी
नाम | Auto Replay for YouTube™ |
ID | dfnieiocloiidjeeklhlbopolajipjac |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-replay-for-youtube/dfnieiocloiidjeeklhlbopolajipjac |
विवरण | Automatically repeat your favourite YouTube video. |
फ़ाइल का आकार | 74.17 KB |
स्थापना संख्या | 960 |
वर्तमान संस्करण | 0.1.7 |
अंतिम अपडेट | 2023-09-09 |
प्रकाशन तिथि | 2018-06-13 |
रेटिंग | 1.15/5 कुल 198 रेटिंग्स |
डेवलपर | Lynn |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://mybrowseraddon.com/youtube-auto-loop.html |
सहायता पृष्ठ URL | https://mybrowseraddon.com/youtube-auto-loop.html |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "0.1.7", "manifest_version": 3, "permissions": [ "storage" ], "name": "Auto Replay for YouTube\u2122", "homepage_url": "https:\/\/mybrowseraddon.com\/youtube-auto-loop.html", "description": "Automatically repeat your favourite YouTube video.", "commands": { "_execute_action": [] }, "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "resources": [ "data\/content_script\/page_context\/*" ] } ], "action": { "default_title": "Auto Replay for YouTube\u2122", "default_popup": "data\/popup\/popup.html", "default_icon": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png" } }, "content_scripts": [ { "all_frames": false, "run_at": "document_start", "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "data\/content_script\/inject.js" ] } ], "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png" } } |