YouStopper for YouTube™
Prevents YouTube™ videos autoplay
Cos'è YouStopper for YouTube™?
YouStopper for YouTube™ è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Prevents YouTube™ videos autoplay".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouStopper for YouTube™
Scarica i file di estensione YouStopper for YouTube™ 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
Prevents YouTube™ videos from starting to play automatically when you open them.
Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin.
Doesn't stop autoplaying in playlists.
Source available at https://github.com/youstopper-dev/youstopper Informazioni di Base sull'Estensione
| Nome | |
| ID | hmfocflebeolgkehnimcchankdjljepb |
| URL Ufficiale | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
| Descrizione | Prevents YouTube™ videos autoplay |
| Dimensione del File | 51.95 KB |
| Conteggio Installazioni | 1,482 |
| Versione Corrente | 0.2 |
| Ultimo Aggiornamento | 2018-02-18 |
| Data di Pubblicazione | 2018-02-18 |
| Valutazione | 3.56/5 Totale 41 Valutazioni |
| Sviluppatore | Unknown |
| Tipo di Pagamento | free |
| Lingue Supportate | en,ru |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "__MSG_extension_name__",
"short_name": "YouStopper",
"description": "__MSG_extension_description__",
"version": "0.2",
"default_locale": "en",
"icons": {
"32": "icons\/youstop_icon_32.png",
"48": "icons\/youstop_icon_48.png",
"64": "icons\/youstop_icon_64.png",
"128": "icons\/youstop_icon_128.png",
"512": "icons\/youstop_icon_512.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"page.js"
],
"browser_action": {
"default_icon": {
"32": "icons\/youstop_icon_32.png",
"64": "icons\/youstop_icon_64.png"
},
"default_title": "__MSG_ba_click2disable__"
},
"permissions": [
"storage"
],
"minimum_chrome_version": "50"
} | |