Pagemarker
A simple Chrome extension that allows you to save positions in a page for fast re-visit
Pagemarker क्या है?
Pagemarker bravebeetle द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple Chrome extension that allows you to save positions in a page for fast re-visit"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pagemarker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A simple chrome extension that allows you to save the scroll bar position in a regular web page for fast re-visit. Once a page is loaded, click the Pagemarker extension icon and a bar with three default buttons will appear at the bottom right corner of your window; clicking the icon again will temporary hide it. Default buttons: 1.Pagemark Button: It generates a new button which saves the current scroll bar position in the page, 2.Top Button: It brings your back to the top of the page. 3.Move Button: It appears only when you hover your cursor over the Pagemarker. You can drag and drop the Pagemarker to anywhere in the window. Note: 1.This extension doesn't support any web application which use it's own scroll bar, ex: pdf viewer, mail box, Google Drive...etc. 2.Reloading the page will reset the Pagemarker to default.
एक्सटेंशन की मूल जानकारी
नाम | Pagemarker |
ID | oheliokfcgehhjlhiiglekmbebigpbdj |
आधिकारिक URL | https://chromewebstore.google.com/detail/pagemarker/oheliokfcgehhjlhiiglekmbebigpbdj |
विवरण | A simple Chrome extension that allows you to save positions in a page for fast re-visit |
फ़ाइल का आकार | 20.33 KB |
स्थापना संख्या | 7,000 |
वर्तमान संस्करण | 1.0.0 |
अंतिम अपडेट | 2013-10-02 |
प्रकाशन तिथि | 2013-10-02 |
रेटिंग | 4.00/5 कुल 2 रेटिंग्स |
डेवलपर | bravebeetle |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pagemarker", "description": "A simple Chrome extension that allows you to save positions in a page for fast re-visit", "version": "1.0.0", "icons": { "48": "Pagemarker48.png", "128": "Pagemarker128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*\/*.pdf" ], "js": [ "start.js", "draw.js", "mark.js", "marker.js" ] } ], "permissions": [ "activeTab" ], "browser_action": { "default_icon": "Pagemarker19_OFF.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "contentstyle.css" ] } |