YouTube progress in tab (favicon)

Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused

YouTube progress in tab (favicon)とは何ですか?

YouTube progress in tab (favicon)はAndreiによって開発されたChromeの拡張機能で、その主な機能は「Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused」です。

拡張機能のスクリーンショット

screenshot

YouTube progress in tab (favicon)拡張機能のCRXファイルをダウンロード

YouTube progress in tab (favicon)拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        0.3:
 - Favicon now changes the white "play" symbol white a "pause" symbol when video is paused/stopped
 - Progress bar for playing videos is now red
 - Added a white background to the progress bar for better visibility

0.2:
 - Paused/stopped videos now have a greyed out progress bar

0.1:
 - Initial release                    

拡張機能の基本情報

名前 YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
公式URL https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp
説明 Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused
ファイルサイズ 8.26 KB
インストール数 678
現在のバージョン 0.3
最終更新日 2018-02-10
公開日 2018-02-10
評価 2.08/5 合計 13 レビュー
開発者 Andrei
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube progress in tab (favicon)",
    "description": "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused",
    "version": "0.3",
    "icons": {
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "functions.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "functions.js",
                "changedefaultfavicon.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "event.js"
    ],
    "permissions": [
        "http:\/\/www.youtube.com\/"
    ]
}