YouStopper for YouTube™
Prevents YouTube™ videos autoplay
Qu'est-ce que YouStopper for YouTube™ ?
YouStopper for YouTube™ est une extension Chrome développée par Unknown, et sa fonction principale est "Prevents YouTube™ videos autoplay".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouStopper for YouTube™
Téléchargez les fichiers d'extension YouStopper for YouTube™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 Informations de Base sur l'Extension
| Nom | |
| ID | hmfocflebeolgkehnimcchankdjljepb |
| URL Officiel | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
| Description | Prevents YouTube™ videos autoplay |
| Taille du Fichier | 51.95 KB |
| Nombre d'Installations | 1,482 |
| Version Actuelle | 0.2 |
| Dernière Mise à Jour | 2018-02-18 |
| Date de Publication | 2018-02-18 |
| Évaluation | 3.56/5 Total 41 Évaluations |
| Développeur | Unknown |
| Type de Paiement | free |
| Langues Prises en Charge | 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"
} | |