Progress Bookmark

save progress of articles that has not been read completely

Co to jest Progress Bookmark?

Progress Bookmark to rozszerzenie Chrome opracowane przez hanjiang387, a jego główną funkcją jest „save progress of articles that has not been read completely”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Progress Bookmark

Pobierz pliki rozszerzeń Progress Bookmark w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Progress Bookmark Progress Bookmark
ID ediaiaoabgoimfjpmegbhlhmpajmegoj
Oficjalny URL https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj
Opis save progress of articles that has not been read completely
Rozmiar pliku 56.29 KB
Liczba instalacji 126
Aktualna Wersja 1.1.5
Ostatnia Aktualizacja 2016-03-26
Data Publikacji 2016-03-26
Ocena 4.67/5 Łącznie 9 Oceny
Deweloper hanjiang387
Typ Płatności free
Strona Rozszerzenia https://github.com/coolriver/smartBookmark
Adres URL Strony Pomocy https://github.com/coolriver/smartBookmark
Obsługiwane Języki 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:\/\/*\/*"
    ]
}