Auto Scroll
Easily scroll to the top and the bottom of current page
Auto Scrollとは何ですか?
Auto ScrollはGareth Ngによって開発されたChromeの拡張機能で、その主な機能は「Easily scroll to the top and the bottom of current page」です。
拡張機能のスクリーンショット
Auto Scroll拡張機能のCRXファイルをダウンロード
Auto Scroll拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |