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文件

下载Scroll Percentage in Tab Title Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}