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"
}
}
} | |