Progress Bookmark

save progress of articles that has not been read completely

Was ist Progress Bookmark?

Progress Bookmark ist eine Chrome-Erweiterung, die von hanjiang387 entwickelt wurde, und ihr Hauptmerkmal ist "save progress of articles that has not been read completely".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Progress Bookmark-Erweiterungs-CRX-Datei herunterladen

Laden Sie Progress Bookmark-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Progress Bookmark Progress Bookmark
ID ediaiaoabgoimfjpmegbhlhmpajmegoj
Offizielle URL https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj
Beschreibung save progress of articles that has not been read completely
Dateigröße 56.29 KB
Installationsanzahl 126
Aktuelle Version 1.1.5
Letztes Update 2016-03-26
Veröffentlichungsdatum 2016-03-26
Bewertung 4.67/5 Insgesamt 9 Bewertungen
Entwickler hanjiang387
Zahlungsart free
Erweiterungswebsite https://github.com/coolriver/smartBookmark
Hilfeseite URL https://github.com/coolriver/smartBookmark
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}