Youtube Dislike Count Extention
This extention enables the YouTube dislike count!
Vad är Youtube Dislike Count Extention?
Youtube Dislike Count Extention är en Chrome-tillägg utvecklad av Ausama95, och dess huvudfunktion är "This extention enables the YouTube dislike count!".
Tilläggsskärmbilder
Ladda ner Youtube Dislike Count Extention-förlängningens CRX-fil
Ladda ner Youtube Dislike Count Extention-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
This extension brings back the ability to be able to see the dislike ratio of any YouTube video.
Grundläggande Information om Tillägg
Namn | |
ID | ihelhpoojojegneekjecpiobfkbfcibi |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-dislike-count-ext/ihelhpoojojegneekjecpiobfkbfcibi |
Beskrivning | This extention enables the YouTube dislike count! |
Filstorlek | 24.13 KB |
Antal Installationer | 105 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2022-01-25 |
Publiceringsdatum | 2022-01-24 |
Betyg | 4.00/5 Totalt 4 Betyg |
Utvecklare | Ausama95 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } ] } |