Progress Bookmark

save progress of articles that has not been read completely

Wat is Progress Bookmark?

Progress Bookmark is een Chrome-extensie ontwikkeld door hanjiang387, en de belangrijkste functie is "save progress of articles that has not been read completely".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Progress Bookmark

Download Progress Bookmark-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Progress Bookmark Progress Bookmark
ID ediaiaoabgoimfjpmegbhlhmpajmegoj
Officiële URL https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj
Beschrijving save progress of articles that has not been read completely
Bestandsgrootte 56.29 KB
Aantal Installaties 126
Huidige Versie 1.1.5
Laatst Bijgewerkt 2016-03-26
Publicatiedatum 2016-03-26
Beoordeling 4.67/5 Totaal 9 Beoordelingen
Ontwikkelaar hanjiang387
Betalingswijze free
Extensiewebsite https://github.com/coolriver/smartBookmark
Help Pagina-URL https://github.com/coolriver/smartBookmark
Ondersteunde Talen 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:\/\/*\/*"
    ]
}