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…

Qu'est-ce que Custom YouTube Start Stop ?

Custom YouTube Start Stop est une extension Chrome développée par Jonathan Li, et sa fonction principale est "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…".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Custom YouTube Start Stop

Téléchargez les fichiers d'extension Custom YouTube Start Stop 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

                        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.                    

Informations de Base sur l'Extension

Nom Custom YouTube Start Stop Custom YouTube Start Stop
ID lodhfkhkhdjjicigiinipdkcbbndpbme
URL Officiel https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme
Description 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…
Taille du Fichier 31.64 KB
Nombre d'Installations 39
Version Actuelle 0.1.2
Dernière Mise à Jour 2021-05-11
Date de Publication 2021-05-11
Évaluation 3.00/5 Total 2 Évaluations
Développeur Jonathan Li
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}