Scroll Pin
Manually record a vertical position on page to return to later.
什么是Scroll Pin?
Scroll Pin是由Christopher Aguilera开发的Chrome扩展程序,该扩展的主要功能是“Manually record a vertical position on page to return to later.”。
扩展截图
下载Scroll Pin扩展crx文件
下载Scroll Pin扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Scroll Pin allows you to pin your current scroll position and return to that position later. Good for long reads, documentation and Wikipedia articles. 扩展基本信息
| 名称 | |
| ID | dadcpolkdngceejebbanbobliemgdhce |
| 官方URL | https://chromewebstore.google.com/detail/scroll-pin/dadcpolkdngceejebbanbobliemgdhce |
| 简介 | Manually record a vertical position on page to return to later. |
| 文件大小 | 1.4 MB |
| 安装次数 | 33 |
| 当前版本 | 1.1 |
| 更新时间 | 2019-05-25 |
| 上架时间 | 2019-05-25 |
| 开发者 | Christopher Aguilera |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Scroll Pin",
"version": "1.1",
"description": "Manually record a vertical position on page to return to later.",
"manifest_version": 2,
"permissions": [
"activeTab",
"declarativeContent",
"storage"
],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images\/flag_16.png",
"32": "images\/flag_32.png",
"48": "images\/flag_48.png",
"128": "images\/flag_128.png"
}
},
"commands": {
"save_yPos": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "Ctrl+Shift+P"
},
"description": "Save current yPos in storage"
},
"return_yPos": {
"suggested_key": {
"default": "Ctrl+Shift+D",
"mac": "Ctrl+Shift+D"
},
"description": "Return to yPos stored in storage"
},
"test_tab": {
"suggested_key": {
"default": "Ctrl+Shift+T",
"mac": "MacCtrl+Shift+T"
},
"description": "Testing tabs"
},
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+P",
"mac": "MacCtrl+Shift+P"
},
"description": "Opens popup.html"
}
}
} | |