Progress Bookmark

save progress of articles that has not been read completely

Cos'è Progress Bookmark?

Progress Bookmark è un'estensione di Chrome sviluppata da hanjiang387, e la sua funzione principale è "save progress of articles that has not been read completely".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Progress Bookmark

Scarica i file di estensione Progress Bookmark in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Progress Bookmark Progress Bookmark
ID ediaiaoabgoimfjpmegbhlhmpajmegoj
URL Ufficiale https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj
Descrizione save progress of articles that has not been read completely
Dimensione del File 56.29 KB
Conteggio Installazioni 126
Versione Corrente 1.1.5
Ultimo Aggiornamento 2016-03-26
Data di Pubblicazione 2016-03-26
Valutazione 4.67/5 Totale 9 Valutazioni
Sviluppatore hanjiang387
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/coolriver/smartBookmark
URL della Pagina di Aiuto https://github.com/coolriver/smartBookmark
Lingue Supportate 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:\/\/*\/*"
    ]
}