Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
什麼是Auto Scroll Extension?
Auto Scroll Extension是由https://071yoon.github.io開發的Chrome擴展程式,該擴展的主要功能是“Auto Scroller for Chrome to help user scroll automatically”。
擴展截圖
下載Auto Scroll Extension擴展crx文件
下載Auto Scroll Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" ] } ] } |