Reading Progress Tracker

Convenietly Save Your Web Articles' Reading Progress Across Devices

Reading Progress Tracker란 무엇입니까?

Reading Progress Tracker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Convenietly Save Your Web Articles' Reading Progress Across Devices"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Tired of losing your web articles' reading progress? I was and it's very frustrating!

With 'Reading Progress Tracker' losing progress is no longer an issue.
You can save your progress in one click on any page, and access it later from any device with the chrome web browser.

It's simple, it's straightforward and it's opensource!
Any feedback and/or contribution will be very much appreciated :)
Repo: https://github.com/hhsn88/chrome/tree/master/prog-tracker

* A complementary mobile app is also planned for cross platform support.                    

확장 프로그램 기본 정보

이름 Reading Progress Tracker Reading Progress Tracker
ID egmoopojemfgacjnjfdpjfijanhlcpop
공식 URL https://chromewebstore.google.com/detail/reading-progress-tracker/egmoopojemfgacjnjfdpjfijanhlcpop
설명 Convenietly Save Your Web Articles' Reading Progress Across Devices
파일 크기 19.27 KB
설치 횟수 19
현재 버전 1.02
최근 업데이트 2019-09-04
출시 날짜 2019-09-03
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Reading Progress Tracker",
    "version": "1.02",
    "description": "Convenietly Save Your Web Articles' Reading Progress Across Devices",
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/prog_trkr16.png",
            "32": "images\/prog_trkr32.png",
            "48": "images\/prog_trkr48.png",
            "128": "images\/prog_trkr128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/prog_trkr16.png",
        "32": "images\/prog_trkr32.png",
        "48": "images\/prog_trkr48.png",
        "128": "images\/prog_trkr128.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}