Youtube Now Playing Description

Displays now playing song when there's a timestamped tracklist in the description

Τι είναι το Youtube Now Playing Description;

Το Youtube Now Playing Description είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Kevin Leutzinger, και η κύρια λειτουργία του είναι "Displays now playing song when there's a timestamped tracklist in the description".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Youtube Now Playing Description

Λήψη αρχείων επέκτασης Youtube Now Playing Description σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Finds the times of tracks in the description and shows which song is currently playing. Also allows skipping forward and back. Very useful for soundtracks, full albums, and other compilations.                    

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

Όνομα Youtube Now Playing Description Youtube Now Playing Description
ID cclaiidhllljekopicenflhhkdkckkbl
Επίσημο URL https://chromewebstore.google.com/detail/youtube-now-playing-descr/cclaiidhllljekopicenflhhkdkckkbl
Περιγραφή Displays now playing song when there's a timestamped tracklist in the description
Μέγεθος Αρχείου 693 KB
Αριθμός Εγκαταστάσεων 14
Τρέχουσα Έκδοση 0.1
Τελευταία Ενημέρωση 2018-02-16
Ημερομηνία Δημοσίευσης 2018-02-15
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Kevin Leutzinger
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Now Playing Description",
    "description": "Displays now playing song when there's a timestamped tracklist in the description",
    "version": "0.1",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "\/icons\/icon.png"
    },
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "main.js"
            ],
            "run_at": "document_start"
        }
    ]
}