Progress Bookmark

save progress of articles that has not been read completely

Progress Bookmark란 무엇입니까?

Progress Bookmark은(는) hanjiang387에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "save progress of articles that has not been read completely"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Progress Bookmark 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Progress Bookmark Progress Bookmark
ID ediaiaoabgoimfjpmegbhlhmpajmegoj
공식 URL https://chrome.google.com/webstore/detail/progress-bookmark/ediaiaoabgoimfjpmegbhlhmpajmegoj
설명 save progress of articles that has not been read completely
파일 크기 56.29 KB
설치 횟수 126
현재 버전 1.1.5
최근 업데이트 2016-03-26
출시 날짜 2016-03-26
평점 4.67/5 총 9 개의 평점
개발자 hanjiang387
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/coolriver/smartBookmark
도움말 페이지 URL https://github.com/coolriver/smartBookmark
지원되는 언어 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:\/\/*\/*"
    ]
}