Dislike YouTube 2021
Bringing back the dislike button on YouTube
Cos'è Dislike YouTube 2021?
Dislike YouTube 2021 è un'estensione di Chrome sviluppata da Cristi, e la sua funzione principale è "Bringing back the dislike button on YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dislike YouTube 2021
Scarica i file di estensione Dislike YouTube 2021 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
Bringing back the dislike button on YouTube Informazioni di Base sull'Estensione
| Nome | |
| ID | bbnoenijmedeeiknnjfjafdmhhocinjd |
| URL Ufficiale | https://chromewebstore.google.com/detail/dislike-youtube-2021/bbnoenijmedeeiknnjfjafdmhhocinjd |
| Descrizione | Bringing back the dislike button on YouTube |
| Dimensione del File | 59.41 KB |
| Conteggio Installazioni | 39 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2021-12-04 |
| Data di Pubblicazione | 2021-12-01 |
| Valutazione | 3.50/5 Totale 8 Valutazioni |
| Sviluppatore | Cristi |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Dislike YouTube 2021",
"version": "1.0.0",
"minimum_chrome_version": "88",
"icons": {
"48": "thumbs48.png",
"128": "thumbs128.png"
},
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"action": {
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/watch?v=*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"externally_connectable": {
"matches": [
"*:\/\/*.youtube.com\/*"
]
},
"web_accessible_resources": [
{
"resources": [
"insert.js"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
]
} | |