Auto Scroll
Easily scroll to the top and the bottom of current page
ما هو Auto Scroll؟
Auto Scroll هو إضافة Chrome تم تطويرها بواسطة Gareth Ng، والميزة الرئيسية لها هي "Easily scroll to the top and the bottom of current page".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Auto Scroll
قم بتنزيل ملفات الامتداد Auto Scroll بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A simple tool for users, you can use this extension to auto scroll to the top or the bottom of current website. By adding a small button on the page, users can easily click and reach the top of the webpage, without scrolling. Users can also hide the button in the popup. Enjoy your long page surfing! Open source: https://github.com/garethng/GoToTop
معلومات أساسية عن التمديد
الاسم | Auto Scroll |
ID | cmbpfcapjacpbmehmemljdilabjnlfhb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/auto-scroll/cmbpfcapjacpbmehmemljdilabjnlfhb |
الوصف | Easily scroll to the top and the bottom of current page |
حجم الملف | 63.8 KB |
عدد التثبيتات | 403 |
النسخة الحالية | 1.2.0 |
آخر تحديث | 2022-09-30 |
تاريخ النشر | 2021-12-30 |
تقييم | 3.80/5 مجموع تقييمات 5 |
المطور | Gareth Ng |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/garethng/GoToTop |
اللغات المدعومة | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "default_locale": "en", "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "1.2.0", "icons": { "48": "images\/icon-48.png", "96": "images\/icon-96.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "jQuery.js", "content.js" ], "matches": [ "*:\/\/*\/*" ], "run_at": "document_start" } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/toolbar-icon-16.png", "19": "images\/toolbar-icon-19.png", "32": "images\/toolbar-icon-32.png", "38": "images\/toolbar-icon-38.png" } }, "permissions": [ "contextMenus", "storage" ] } |