View-Like Ratio for YouTube

Add display to the YouTube watch page to show a view-to-like ratio or percentage.

View-Like Ratio for YouTubeとは何ですか?

View-Like Ratio for YouTubeはflootahによって開発されたChromeの拡張機能で、その主な機能は「Add display to the YouTube watch page to show a view-to-like ratio or percentage.」です。

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

screenshot
screenshot

View-Like Ratio for YouTube拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        With YouTube dislikes on the way out, there needs to be an alternative way to judge a video's quality. This extension brings a solution by showing how often viewers decide to like a video. This metric can be useful when comparing videos of similar content or by the same creator.                    

拡張機能の基本情報

名前 View-Like Ratio for YouTube View-Like Ratio for YouTube
ID lfckpofpbpnedmdplciiilidanpaoemn
公式URL https://chromewebstore.google.com/detail/view-like-ratio-for-youtu/lfckpofpbpnedmdplciiilidanpaoemn
説明 Add display to the YouTube watch page to show a view-to-like ratio or percentage.
ファイルサイズ 16.66 KB
インストール数 146
現在のバージョン 0.4
最終更新日 2022-12-07
公開日 2021-12-01
評価 3.29/5 合計 7 レビュー
開発者 flootah
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://flootah.dev/about/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View-Like Ratio for YouTube",
    "description": "Add display to the YouTube watch page to show a view-to-like ratio or percentage.",
    "version": "0.4",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "css": [
                "viewlike.css"
            ],
            "js": [
                "viewlike.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "viewlike128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "viewlike.svg"
            ],
            "matches": [
                ""
            ]
        }
    ]
}