Custom YouTube Start Stop
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…
Was ist Custom YouTube Start Stop?
Custom YouTube Start Stop ist eine Chrome-Erweiterung, die von Jonathan Li entwickelt wurde, und ihr Hauptmerkmal ist "This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is…".
Erweiterungsscreenshots
Custom YouTube Start Stop-Erweiterungs-CRX-Datei herunterladen
Laden Sie Custom YouTube Start Stop-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is especially useful for long youtube videos for podcasts or bedtime stories.
Grundlegende Informationen zur Erweiterung
Name | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
Offizielle URL | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
Beschreibung | This is a chrome extension that allows you to choose a custom start and stop time for a youtube video you want to watch. It is… |
Dateigröße | 31.64 KB |
Installationsanzahl | 39 |
Aktuelle Version | 0.1.2 |
Letztes Update | 2021-05-11 |
Veröffentlichungsdatum | 2021-05-11 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Jonathan Li |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom YouTube Start Stop", "version": "0.1.2", "offline_enabled": true, "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/watch?v=*" ], "js": [ "content.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "19": "img\/icon19.png", "38": "img\/icon38.png", "16": "img\/icon16.png", "24": "img\/icon24.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "page_action": { "default_title": "Custom YouTube Start Stop", "default_popup": "popup.html" }, "permissions": [ "activeTab" ] } |