Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
Auto Scroll Extension क्या है?
Auto Scroll Extension https://071yoon.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto Scroller for Chrome to help user scroll automatically"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Scroll Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Auto Scroller for Chrome for automation This Extension helps user to use scroller as automation form. for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! And in addition, extension remembers your last option for scrolling, and will remain as that option.
एक्सटेंशन की मूल जानकारी
नाम | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
विवरण | Auto Scroller for Chrome to help user scroll automatically |
फ़ाइल का आकार | 84.15 KB |
स्थापना संख्या | 383 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2023-09-05 |
प्रकाशन तिथि | 2023-09-04 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://071yoon.github.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Scroll Extension", "description": "Auto Scroller for Chrome to help user scroll automatically", "manifest_version": 3, "version": "1.0.2", "permissions": [ "activeTab", "scripting", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |