Return YouTube Dislikes Counter
Returning the ability to see the number of dislikes
Cos'è Return YouTube Dislikes Counter?
Return YouTube Dislikes Counter è un'estensione di Chrome sviluppata da Kronus, e la sua funzione principale è "Returning the ability to see the number of dislikes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Return YouTube Dislikes Counter
Scarica i file di estensione Return YouTube Dislikes Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
The extension returns the ability to see how many people have put dislikes.
Informazioni di Base sull'Estensione
Nome | |
ID | oljgiamaflelpmdlmdjpooahpmiobclo |
URL Ufficiale | https://chrome.google.com/webstore/detail/return-youtube-dislikes-c/oljgiamaflelpmdlmdjpooahpmiobclo |
Descrizione | Returning the ability to see the number of dislikes |
Dimensione del File | 16.96 KB |
Conteggio Installazioni | 161 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2021-12-23 |
Data di Pubblicazione | 2021-11-30 |
Sviluppatore | Kronus |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Return YouTube Dislikes Counter", "description": "Returning the ability to see the number of dislikes", "version": "1.2", "manifest_version": 3, "background": { "service_worker": "ryd.background.js" }, "icons": { "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/m.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.music.youtube.com\/*" ], "js": [ "bundled-content-script.js" ], "css": [ "content-style.css" ] } ], "externally_connectable": { "matches": [ "*:\/\/*.youtube.com\/*" ] }, "web_accessible_resources": [ { "resources": [ "ryd.script.js" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |