How Do You Delete The Like Button [Youtube]

This extension allows the user to remove the like button from Youtube videos.

Τι είναι το How Do You Delete The Like Button [Youtube];

Το How Do You Delete The Like Button [Youtube] είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον x.hiei.jaganshi.x, και η κύρια λειτουργία του είναι "This extension allows the user to remove the like button from Youtube videos.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης How Do You Delete The Like Button [Youtube]

Λήψη αρχείων επέκτασης How Do You Delete The Like Button [Youtube] σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        How do you delete the like button? Now its possible. Click the extension icon to remove the like button from youtube videos, so you don't "accidentally" click on it. Automatically removes "Thumbs Up" from Logan Paul videos.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα How Do You Delete The Like Button [Youtube] How Do You Delete The Like Button [Youtube]
ID eolomlinhghnnjmbopefbpodbgpbggpb
Επίσημο URL https://chrome.google.com/webstore/detail/how-do-you-delete-the-lik/eolomlinhghnnjmbopefbpodbgpbggpb
Περιγραφή This extension allows the user to remove the like button from Youtube videos.
Μέγεθος Αρχείου 7.02 KB
Αριθμός Εγκαταστάσεων 18
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2018-03-19
Ημερομηνία Δημοσίευσης 2018-03-19
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής x.hiei.jaganshi.x
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "How Do You Delete The Like Button [Youtube]",
    "description": "This extension allows the user to remove the like button from Youtube videos.",
    "version": "1.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google.com; object-src 'self'"
}