Progress Bookmark
save progress of articles that has not been read completely
Progress Bookmark क्या है?
Progress Bookmark hanjiang387 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "save progress of articles that has not been read completely"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Progress Bookmark एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Introduction: 1. Save progress of articles that has not been read completely. 2. When open the articles that has been saved progress, pages will scroll to the position recorded last time. 3. Progress Records can be added, updated or removed; 4. Progrees data will be automatically auto synced among different chromes on the same account.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | ediaiaoabgoimfjpmegbhlhmpajmegoj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj |
विवरण | save progress of articles that has not been read completely |
फ़ाइल का आकार | 56.29 KB |
स्थापना संख्या | 126 |
वर्तमान संस्करण | 1.1.5 |
अंतिम अपडेट | 2016-03-26 |
प्रकाशन तिथि | 2016-03-26 |
रेटिंग | 4.67/5 कुल 9 रेटिंग्स |
डेवलपर | hanjiang387 |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/coolriver/smartBookmark |
सहायता पृष्ठ URL | https://github.com/coolriver/smartBookmark |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Progress Bookmark", "description": "save progress of articles that has not been read completely", "version": "1.1.5", "browser_action": { "default_icon": "icon48.png", "default_popup": "popup.html", "default_title": "Progress Bookmark", "default_badgetext": "test" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.2.0.min.js", "content_script.js" ], "css": [ "mystyle.css" ] } ], "permissions": [ "contextMenus", "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ] } |