Youtube Likes / Views

Simple youtubeLikes / Views ratio ( percentage )

什麼是Youtube Likes / Views?

Youtube Likes / Views是由cosmin.serboteiu開發的Chrome擴展程式,該擴展的主要功能是“Simple youtubeLikes / Views ratio ( percentage )”。

擴展截圖

screenshot

下載Youtube Likes / Views擴展crx文件

下載Youtube Likes / Views擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        A simple extension that will display the ratio of likes / views as a percentage. This is quite useful in the current context in which there is no dislike counter.                    

擴展基本資訊

名稱 Youtube Likes / Views Youtube Likes / Views
ID hpllifddocjegddmfhpknnncbciekpfe
官方網址 https://chrome.google.com/webstore/detail/youtube-likes-views/hpllifddocjegddmfhpknnncbciekpfe
簡介 Simple youtubeLikes / Views ratio ( percentage )
檔案大小 10.56 KB
安裝次數 99
目前版本 0.2
更新時間 2021-11-23
上架時間 2021-11-23
評分 4.00/5 共 6 次評分
開發者 cosmin.serboteiu
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Likes \/ Views",
    "description": "Simple youtubeLikes \/ Views ratio ( percentage )",
    "version": "0.2",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ]
}