Auto Youtube Shorts Scroll Down
Auto Youtube Shorts Scroll Down
Auto Youtube Shorts Scroll Down क्या है?
Auto Youtube Shorts Scroll Down wonkyungup द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto Youtube Shorts Scroll Down"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Youtube Shorts Scroll Down एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A switch is created at the top inside the video. If there is no switch, it will refresh the page. It is a test project made for personal study, so I would appreciate it if you could understand it even if you fix it late. The code has been posted on Github. If you have any additional or uncomfortable points while using it, please send us a review or e-mail and we will respond. Version 1.0.7 - ADD: dislike show - FIX: scroll Event check, to many event
एक्सटेंशन की मूल जानकारी
नाम | |
ID | bfofdkanfmkkbngkmhmcjichambccene |
आधिकारिक URL | https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene |
विवरण | Auto Youtube Shorts Scroll Down |
फ़ाइल का आकार | 274 KB |
स्थापना संख्या | 258 |
वर्तमान संस्करण | 1.0.7 |
अंतिम अपडेट | 2023-06-25 |
प्रकाशन तिथि | 2023-02-23 |
रेटिंग | 2.67/5 कुल 3 रेटिंग्स |
डेवलपर | wonkyungup |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Youtube Shorts Scroll Down", "manifest_version": 3, "version": "1.0.7", "permissions": [ "tabs" ], "description": "Auto Youtube Shorts Scroll Down", "icons": { "16": "16x16.png", "32": "32x32.png", "48": "48x48.png" }, "action": { "default_icon": { "16": "16x16.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/shorts\/*" ], "js": [ "content.js" ] } ] } |