Autoplay Stopper for YouTube
Chrome Extension for Turning off Autoplay on YouTube.
Wat is Autoplay Stopper for YouTube?
Autoplay Stopper for YouTube is een Chrome-extensie ontwikkeld door https://fiahfy.blogspot.com, en de belangrijkste functie is "Chrome Extension for Turning off Autoplay on YouTube.".
Extensie Screenshots
Download het CRX-bestand van de extensie Autoplay Stopper for YouTube
Download Autoplay Stopper for YouTube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
- Turn off autoplay on video and channel page. Basisinformatie over de Extensie
| Naam | |
| ID | nllpbgemclgokfdjneckdfnhjpigolko |
| Officiële URL | https://chromewebstore.google.com/detail/autoplay-stopper-for-yout/nllpbgemclgokfdjneckdfnhjpigolko |
| Beschrijving | Chrome Extension for Turning off Autoplay on YouTube. |
| Bestandsgrootte | 145 KB |
| Aantal Installaties | 1,329 |
| Huidige Versie | 0.0.3 |
| Laatst Bijgewerkt | 2022-12-31 |
| Publicatiedatum | 2020-08-28 |
| Beoordeling | 3.57/5 Totaal 14 Beoordelingen |
| Ontwikkelaar | https://fiahfy.blogspot.com |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"all_frames": false,
"js": [
"content-script.js"
]
}
],
"action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.youtube.com\/*"
],
"name": "Autoplay Stopper for YouTube",
"description": "Chrome Extension for Turning off Autoplay on YouTube.",
"version": "0.0.3"
} | |