Pagemark for Chrome
Remember your position on any page
Pagemark for Chrome क्या है?
Pagemark for Chrome Chuck Baker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remember your position on any page"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pagemark for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Pagemarks are like bookmarks, but for a specific place within a webpage. One or more pagemarks can be set on most any webpage. Clicking the toolbar icon will scroll the screen to the first/next pagemark.
एक्सटेंशन की मूल जानकारी
नाम | Pagemark for Chrome |
ID | mmdffnlogficblnnnehdcjjbcmcaneih |
आधिकारिक URL | https://chromewebstore.google.com/detail/pagemark-for-chrome/mmdffnlogficblnnnehdcjjbcmcaneih |
विवरण | Remember your position on any page |
फ़ाइल का आकार | 144 KB |
स्थापना संख्या | 142 |
वर्तमान संस्करण | 1.0.0.1 |
अंतिम अपडेट | 2016-07-15 |
प्रकाशन तिथि | 2016-07-15 |
रेटिंग | 4.33/5 कुल 3 रेटिंग्स |
डेवलपर | Chuck Baker |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://softwarebychuck.com/ |
सहायता पृष्ठ URL | http://www.customsoftwareconsult.com/forum/viewforum.php?f=18 |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pagemark for Chrome", "short_name": "Pagemark", "description": "Remember your position on any page", "version": "1.0.0.1", "author": "Chuck Baker", "browser_action": { "default_icon": "pm38x38.png", "default_title": "Pagemark\n\nDouble click to set a pagemark at current position\nSingle click to go to next pagemark\nCTRL-CLICK to delete current pagemark\nCTRL-ALT-CLICK to delete all pagemarks on the page" }, "permissions": [ "activeTab", "storage", "tabs", "https:\/\/accounts.google.com\/*", "https:\/\/www.googleapis.com\/*", "http:\/\/*\/", "https:\/\/*\/", "file:\/\/\/*\/*" ], "background": { "persistent": false, "page": "sandbox.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "taffy.js", "pmCommon.js", "pmContent.js", "purchase.js", "buy.js", "propsConsole.js" ], "run_at": "document_end", "all_frames": true } ], "options_ui": { "page": "pagemarkOptions.html", "chrome_style": false, "open_in_tab": true }, "oauth2": { "client_id": "476322903377-urvgq80canvq2im29dfvc361uhtfoga1.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/plus.login", "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly", "https:\/\/www.googleapis.com\/auth\/userinfo.email" ] }, "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "web_accessible_resources": [ "pagemarkOptions.html", "pmEnd.png" ] } |