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 là gì?

Scroll Percentage in Tab Title Extension là một tiện ích mở rộng Chrome được phát triển bởi dimshik100, và tính năng chính của nó là "See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Scroll Percentage in Tab Title Extension

Tải xuống các tệp mở rộng Scroll Percentage in Tab Title Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Scroll Percentage in Tab Title Extension Scroll Percentage in Tab Title Extension
ID fbohjeijkanpeamijojloonklakpncef
URL Chính Thức https://chromewebstore.google.com/detail/scroll-percentage-in-tab/fbohjeijkanpeamijojloonklakpncef
Mô tả See scrolled percentage on page tab. Always see your blog or article reading progress, how much you have read and how much is left.
Kích Thước Tệp 17.18 KB
Số Lần Cài Đặt 728
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2020-06-01
Ngày Phát Hành 2020-06-01
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển dimshik100
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dimshik100/Scroll-Percentage-in-Tab-Title-Chrome-Extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}