Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
ما هو Auto Scroll Extension؟
Auto Scroll Extension هو إضافة Chrome تم تطويرها بواسطة https://071yoon.github.io، والميزة الرئيسية لها هي "Auto Scroller for Chrome to help user scroll automatically".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Scroll Extension
قم بتنزيل ملفات الامتداد Auto Scroll Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" ] } ] } |