Auto Scroll
Extension for lazy ppl
ما هو Auto Scroll؟
Auto Scroll هو إضافة Chrome تم تطويرها بواسطة drperstry، والميزة الرئيسية لها هي "Extension for lazy ppl".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Scroll
قم بتنزيل ملفات الامتداد Auto Scroll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This chrome extension is for scrolling automatically. Can be very helpful for readers and loading pages that haveitems.
معلومات أساسية عن التمديد
الاسم | Auto Scroll |
ID | pgogpmjdfnolmgihjemjakelopockkgo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/auto-scroll/pgogpmjdfnolmgihjemjakelopockkgo |
الوصف | Extension for lazy ppl |
حجم الملف | 13.51 KB |
عدد التثبيتات | 102 |
النسخة الحالية | 1.0.0 |
آخر تحديث | 2023-09-22 |
تاريخ النشر | 2023-09-21 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | drperstry |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en,ar |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extension_name__", "version": "1.0.0", "description": "__MSG_extension_description__", "manifest_version": 3, "author": "Abdulrahman huwais", "permissions": [ "activeTab", "storage" ], "default_locale": "en", "action": { "default_icon": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "default_popup": "popup\/popup.html", "default_title": "Scrolling" }, "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "content_scripts": [ { "js": [ "scripts\/content-script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "runAt": "document_end" } ] } |