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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον flootah, και η κύρια λειτουργία του είναι "Add display to the YouTube watch page to show a view-to-like ratio or percentage.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης View-Like Ratio for YouTube

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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": [
                ""
            ]
        }
    ]
}