Scroll Percentage in Tab Title Extension

See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.

Scroll Percentage in Tab Title Extension란 무엇입니까?

Scroll Percentage in Tab Title Extension은(는) dimshik100에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Scroll Percentage in Tab Title Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension that updates the page title with the scrolled percentage of the page. Best for blogs and articles. Always see your reading progress, how much you have read and how much is left.                    

확장 프로그램 기본 정보

이름 Scroll Percentage in Tab Title Extension Scroll Percentage in Tab Title Extension
ID fbohjeijkanpeamijojloonklakpncef
공식 URL https://chromewebstore.google.com/detail/scroll-percentage-in-tab/fbohjeijkanpeamijojloonklakpncef
설명 See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.
파일 크기 17.18 KB
설치 횟수 728
현재 버전 0.2
최근 업데이트 2020-06-01
출시 날짜 2020-06-01
평점 4.20/5 총 5 개의 평점
개발자 dimshik100
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dimshik100/Scroll-Percentage-in-Tab-Title-Chrome-Extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Scroll Percentage in Tab Title Extension",
    "short_name": "ScrollPercentageInTabTitle",
    "version": "0.2",
    "author": "Dima Vishnevetsky ",
    "description": "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.",
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon_extension_toolbar_16.png",
            "32": "icons\/icon_extension_toolbar_32.png"
        },
        "default_title": "Scroll Percentage in Tab Title",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/icon_extension_toolbar_16.png",
        "32": "icons\/icon_windows_computers_32.png",
        "48": "icons\/icon_extensions_management_page_48.png",
        "128": "icons\/icon_web_store_icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "extensionInjector.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "extension.js"
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}