Youtube Likes / Views

Simple youtubeLikes / Views ratio ( percentage )

Vad är Youtube Likes / Views?

Youtube Likes / Views är en Chrome-tillägg utvecklad av cosmin.serboteiu, och dess huvudfunktion är "Simple youtubeLikes / Views ratio ( percentage )".

Tilläggsskärmbilder

screenshot

Ladda ner Youtube Likes / Views-förlängningens CRX-fil

Ladda ner Youtube Likes / Views-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Youtube Likes / Views Youtube Likes / Views
ID hpllifddocjegddmfhpknnncbciekpfe
Officiell webbadress https://chrome.google.com/webstore/detail/youtube-likes-views/hpllifddocjegddmfhpknnncbciekpfe
Beskrivning Simple youtubeLikes / Views ratio ( percentage )
Filstorlek 10.56 KB
Antal Installationer 99
Aktuell Version 0.2
Senast Uppdaterad 2021-11-23
Publiceringsdatum 2021-11-23
Betyg 4.00/5 Totalt 6 Betyg
Utvecklare cosmin.serboteiu
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}