Progress Bookmark

save progress of articles that has not been read completely

Qu'est-ce que Progress Bookmark ?

Progress Bookmark est une extension Chrome développée par hanjiang387, et sa fonction principale est "save progress of articles that has not been read completely".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Progress Bookmark

Téléchargez les fichiers d'extension Progress Bookmark au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Progress Bookmark Progress Bookmark
ID ediaiaoabgoimfjpmegbhlhmpajmegoj
URL Officiel https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj
Description save progress of articles that has not been read completely
Taille du Fichier 56.29 KB
Nombre d'Installations 126
Version Actuelle 1.1.5
Dernière Mise à Jour 2016-03-26
Date de Publication 2016-03-26
Évaluation 4.67/5 Total 9 Évaluations
Développeur hanjiang387
Type de Paiement free
Site Web de l'Extension https://github.com/coolriver/smartBookmark
URL de la Page d'Aide https://github.com/coolriver/smartBookmark
Langues Prises en Charge 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:\/\/*\/*"
    ]
}