Webpage Auto Scrolldown
Automatically keeps you at the bottom of a page when clicked.
ما هو Webpage Auto Scrolldown؟
Webpage Auto Scrolldown هو إضافة Chrome تم تطويرها بواسطة CommanderCactus، والميزة الرئيسية لها هي "Automatically keeps you at the bottom of a page when clicked.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Webpage Auto Scrolldown
قم بتنزيل ملفات الامتداد Webpage Auto Scrolldown بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Literally scrolls to the bottom of the page. That's it. Click it once to activate it, click it again to deactivate. Probably a lot of bugs. Go forth and be productive, I guess.
معلومات أساسية عن التمديد
الاسم | |
ID | aegbbdpcnbnddiipcggakoglcmlgejem |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/webpage-auto-scrolldown/aegbbdpcnbnddiipcggakoglcmlgejem |
الوصف | Automatically keeps you at the bottom of a page when clicked. |
حجم الملف | 14.53 KB |
عدد التثبيتات | 3,000 |
النسخة الحالية | 1.0 |
آخر تحديث | 2016-03-13 |
تاريخ النشر | 2016-03-13 |
تقييم | 4.15/5 مجموع تقييمات 20 |
المطور | CommanderCactus |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Webpage Auto Scrolldown", "description": "Automatically keeps you at the bottom of a page when clicked.", "version": "1.0", "short_name": "Auto Scroller", "icons": { "16": "ico16.png", "48": "ico48.png", "128": "ico128.png" }, "background": { "scripts": [ "bgcomm.js" ], "persistent": false }, "permissions": [ "tabs", "activeTab", "http:\/\/*\/*", "https:\/\/*\/*", "alarms" ], "browser_action": { "default_title": "KICK IT INTO OVERDRIIIIIIVE" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "autoscroll.js" ], "run_at": "document_end" } ] } |