Progress Bookmark
save progress of articles that has not been read completely
Progress Bookmarkとは何ですか?
Progress Bookmarkはhanjiang387によって開発されたChromeの拡張機能で、その主な機能は「save progress of articles that has not been read completely」です。
拡張機能のスクリーンショット
Progress Bookmark拡張機能のCRXファイルをダウンロード
Progress Bookmark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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:\/\/*\/*" ] } |