Youtube Likes / Views

Simple youtubeLikes / Views ratio ( percentage )

What is Youtube Likes / Views?

Youtube Likes / Views is a Chrome extension developed by cosmin.serboteiu, and its main feature is "Simple youtubeLikes / Views ratio ( percentage )".

Extension Screenshots

screenshot

Download Youtube Likes / Views Extension CRX File

Download Youtube Likes / Views extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Youtube Likes / Views Youtube Likes / Views
ID hpllifddocjegddmfhpknnncbciekpfe
Official URL https://chrome.google.com/webstore/detail/youtube-likes-views/hpllifddocjegddmfhpknnncbciekpfe
Description Simple youtubeLikes / Views ratio ( percentage )
File Size 10.56 KB
Installation Count 99
Current Version 0.2
Last Updated 2021-11-23
Publish Date 2021-11-23
Rating 4.00/5 Total 6 Ratings
Developer cosmin.serboteiu
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}