My Scroll Button
Simply scrolling to top or bottom
什么是My Scroll Button?
My Scroll Button是由N.Zetoutou开发的Chrome扩展程序,该扩展的主要功能是“Simply scrolling to top or bottom”。
扩展截图
下载My Scroll Button扩展crx文件
下载My Scroll Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple scroll button. Perfect for tumblr or twitter which use endless loading. you can disable for specific site and your seetings is always synced with Chrome sync (you must check "extensions" in google chrome sync) This extension has very light code (~ 6k without scroll image). Enjoys ! ************************ my other extensions *************** https://chrome.google.com/webstore/detail/font-playground/hdpmpnhaoddjelneingmbnhaibbmjgno https://chrome.google.com/webstore/detail/fast-bookmark-scanner/gjcmklpilmpfhfjpebhnapnglcppdbic https://chrome.google.com/webstore/detail/click-counter-beta/pjjhodhefdnglbaaogjilbficnccehlf
扩展基本信息
名称 | My Scroll Button |
ID | pbpnciineegkfenpaaebjmbmmbhocipf |
官方URL | https://chromewebstore.google.com/detail/my-scroll-button/pbpnciineegkfenpaaebjmbmmbhocipf |
简介 | Simply scrolling to top or bottom |
文件大小 | 14.9 KB |
安装次数 | 285 |
当前版本 | 2017.11.15 |
更新时间 | 2017-11-15 |
上架时间 | 2017-11-15 |
评分 | 4.14/5 共14次评分 |
开发者 | N.Zetoutou |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My Scroll Button", "version": "2017.11.15", "description": "Simply scrolling to top or bottom", "icons": { "16": "icon-ext-48.png", "48": "icon-ext-48.png", "128": "icon-ext-48.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "css": [ "content_script.css" ] } ], "browser_action": { "default_icon": "icon-ext-48.png", "default_popup": "browser_action.html" }, "web_accessible_resources": [ "icon-up.png" ], "permissions": [ "storage", "activeTab" ], "manifest_version": 2 } |