Youtube Shorts Auto Scroll - Productivity++
Automatically scrolls when a Youtube Short ends.
Youtube Shorts Auto Scroll - Productivity++ क्या है?
Youtube Shorts Auto Scroll - Productivity++ Productivity ++ द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically scrolls when a Youtube Short ends."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Shorts Auto Scroll - Productivity++ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
You can also change weather it automatically scrolls in the popup. Instructions will be given when the extension is installed! Made with ❤️ from the team at Productivity ++. New version: Fixed bug where if you were on YouTube and then went to a short, it wouldn't work until reload. Other bugs fixed
एक्सटेंशन की मूल जानकारी
नाम | Youtube Shorts Auto Scroll - Productivity++ |
ID | bmjbgjndjeinofbgoanhkdgeclbfdbpm |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm |
विवरण | Automatically scrolls when a Youtube Short ends. |
फ़ाइल का आकार | 618 KB |
स्थापना संख्या | 332 |
वर्तमान संस्करण | 69.420 |
अंतिम अपडेट | 2023-05-30 |
प्रकाशन तिथि | 2023-05-29 |
रेटिंग | 3.67/5 कुल 3 रेटिंग्स |
डेवलपर | Productivity ++ |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Shorts Auto Scroll - Productivity++", "version": "69.420", "author": { "email": "[email protected]" }, "description": "Automatically scrolls when a Youtube Short ends.", "action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png" }, "default_title": "YT Shorts Autoscroll", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "scroll-plain.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "128": "icon.png" }, "permissions": [ "scripting", "activeTab" ] } |