Toggle YouTube Comments
Hides YouTube comments by default
Cos'è Toggle YouTube Comments?
Toggle YouTube Comments è un'estensione di Chrome sviluppata da Dennis & Friends, e la sua funzione principale è "Hides YouTube comments by default".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Toggle YouTube Comments
Scarica i file di estensione Toggle YouTube Comments 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
Add this lightweight extension to disable/enable YouTube comments.
• Works with the new and old YouTube
• Flexibility to easily hide or show comments
• Blends in with YouTube's user interface
• Shows number of comments when hidden
• No tracking, your privacy is important
• Extremely small size - no bloat
• Actively maintained
• Open source code
See https://git.io/v5RgW for release notes. Informazioni di Base sull'Estensione
| Nome | |
| ID | ampjnmipdgicjjidohpkidhghakoidfm |
| URL Ufficiale | https://chrome.google.com/webstore/detail/toggle%C2%A0youtube%C2%A0comments/ampjnmipdgicjjidohpkidhghakoidfm |
| Descrizione | Hides YouTube comments by default |
| Dimensione del File | 8.03 KB |
| Conteggio Installazioni | 479 |
| Versione Corrente | 4.1.3 |
| Ultimo Aggiornamento | 2019-05-06 |
| Data di Pubblicazione | 2019-05-06 |
| Valutazione | 3.68/5 Totale 38 Valutazioni |
| Sviluppatore | Dennis & Friends |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/dideler/toggle-youtube-comments |
| URL della Pagina di Aiuto | https://github.com/dideler/toggle-youtube-comments |
| Lingue Supportate | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extension_name__",
"description": "__MSG_extension_desc__",
"version": "4.1.3",
"default_locale": "en",
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"128": "icons\/128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*.youtube.com\/*",
"https:\/\/*.youtube.com\/*"
],
"js": [
"script.js"
],
"css": [
"youtube.css"
],
"run_at": "document_end"
}
]
} | |