SelfScroll
This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
SelfScroll क्या है?
SelfScroll https://zerobug.it द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allow to automatically scroll the page. Suitable for monitors and kiosks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SelfScroll एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension allow to automatically scroll the page. Suitable for monitors and kiosks. Buy me a coffe :D Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc Paypal: https://www.paypal.me/ZeroBug
एक्सटेंशन की मूल जानकारी
नाम | SelfScroll |
ID | lofkbkbhpmeihoaogggfbhmjdekjihlf |
आधिकारिक URL | https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf |
विवरण | This extension allow to automatically scroll the page. Suitable for monitors and kiosks. |
फ़ाइल का आकार | 132 KB |
स्थापना संख्या | 1,476 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2018-11-13 |
प्रकाशन तिथि | 2018-11-13 |
रेटिंग | 4.40/5 कुल 5 रेटिंग्स |
डेवलपर | https://zerobug.it |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://zerobug.it/ |
समर्थित भाषाएँ | en,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SelfScroll", "version": "1.4", "description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.", "default_locale": "en", "icons": { "16": ".\/icons\/selfscroll_16.png", "48": ".\/icons\/selfscroll_48.png", "128": ".\/icons\/selfscroll_128.png" }, "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "storage", "tabs" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "selfscroll_script.js" ] } ], "options_ui": { "page": "selfscroll_options.html", "chrome_style": true }, "background": { "scripts": [ "selfscroll_background.js" ], "persistent": false }, "browser_action": { "default_icon": ".\/icons\/selfscroll.png", "default_title": "SelfScroll" }, "manifest_version": 2 } |