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…
Hvad er Custom YouTube Start Stop?
Custom YouTube Start Stop er en Chrome-udvidelse udviklet af Jonathan Li, og dens hovedfunktion er "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…".
Udvidelsesskærmbilleder
Download Custom YouTube Start Stop-udvidelses-CRX-fil
Download Custom YouTube Start Stop-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Custom YouTube Start Stop |
ID | lodhfkhkhdjjicigiinipdkcbbndpbme |
Officiel URL | https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme |
Beskrivelse | 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… |
Filstørrelse | 31.64 KB |
Antal Installationer | 39 |
Nuværende Version | 0.1.2 |
Senest Opdateret | 2021-05-11 |
Udgivelsesdato | 2021-05-11 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | Jonathan Li |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |