Scroll Pin
Manually record a vertical position on page to return to later.
Scroll Pin क्या है?
Scroll Pin Christopher Aguilera द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manually record a vertical position on page to return to later."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Scroll Pin एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Scroll Pin allows you to pin your current scroll position and return to that position later. Good for long reads, documentation and Wikipedia articles.
एक्सटेंशन की मूल जानकारी
नाम | Scroll Pin |
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" } } } |