Progress Bookmark
save progress of articles that has not been read completely
Что такое Progress Bookmark?
Progress Bookmark - это расширение Chrome, разработанное hanjiang387, и его основная функция - "save progress of articles that has not been read completely".
Снимки экрана расширения
Скачать файл CRX расширения Progress Bookmark
Скачайте файлы расширений 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:\/\/*\/*" ] } |