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…

Τι είναι το Custom YouTube Start Stop;

Το Custom YouTube Start Stop είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jonathan Li, και η κύρια λειτουργία του είναι "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…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Custom YouTube Start Stop

Λήψη αρχείων επέκτασης Custom YouTube Start Stop σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Custom YouTube Start Stop Custom YouTube Start Stop
ID lodhfkhkhdjjicigiinipdkcbbndpbme
Επίσημο URL https://chromewebstore.google.com/detail/custom-youtube-start-stop/lodhfkhkhdjjicigiinipdkcbbndpbme
Περιγραφή 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…
Μέγεθος Αρχείου 31.64 KB
Αριθμός Εγκαταστάσεων 39
Τρέχουσα Έκδοση 0.1.2
Τελευταία Ενημέρωση 2021-05-11
Ημερομηνία Δημοσίευσης 2021-05-11
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Jonathan Li
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}