Youtube Dislike Count Extention
This extention enables the YouTube dislike count!
Wat is Youtube Dislike Count Extention?
Youtube Dislike Count Extention is een Chrome-extensie ontwikkeld door Ausama95, en de belangrijkste functie is "This extention enables the YouTube dislike count!".
Extensie Screenshots
Download het CRX-bestand van de extensie Youtube Dislike Count Extention
Download Youtube Dislike Count Extention-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension brings back the ability to be able to see the dislike ratio of any YouTube video.
Basisinformatie over de Extensie
Naam | |
ID | ihelhpoojojegneekjecpiobfkbfcibi |
Officiële URL | https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi |
Beschrijving | This extention enables the YouTube dislike count! |
Bestandsgrootte | 24.13 KB |
Aantal Installaties | 105 |
Huidige Versie | 0.2 |
Laatst Bijgewerkt | 2022-01-25 |
Publicatiedatum | 2022-01-24 |
Beoordeling | 4.00/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Ausama95 |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Dislike Count Extention", "description": "This extention enables the YouTube dislike count!", "version": "0.2", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "options_page": "options.html", "permissions": [ "storage", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" } }, "icons": { "16": ".\/images\/obj-16x16.png", "32": ".\/images\/obj-32x32.png", "48": ".\/images\/obj-48x48.png", "128": ".\/images\/obj-128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |