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
Eメール [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"
    ]
}