YouTube progress in tab (favicon)

Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused

Τι είναι το YouTube progress in tab (favicon);

Το YouTube progress in tab (favicon) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrei, και η κύρια λειτουργία του είναι "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused".

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

screenshot

Λήψη αρχείου CRX της επέκτασης YouTube progress in tab (favicon)

Λήψη αρχείων επέκτασης YouTube progress in tab (favicon) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        0.3:
 - Favicon now changes the white "play" symbol white a "pause" symbol when video is paused/stopped
 - Progress bar for playing videos is now red
 - Added a white background to the progress bar for better visibility

0.2:
 - Paused/stopped videos now have a greyed out progress bar

0.1:
 - Initial release                    

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

Όνομα YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
Επίσημο URL https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp
Περιγραφή Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused
Μέγεθος Αρχείου 8.26 KB
Αριθμός Εγκαταστάσεων 678
Τρέχουσα Έκδοση 0.3
Τελευταία Ενημέρωση 2018-02-10
Ημερομηνία Δημοσίευσης 2018-02-10
Αξιολόγηση 2.08/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής Andrei
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube progress in tab (favicon)",
    "description": "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused",
    "version": "0.3",
    "icons": {
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "functions.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "functions.js",
                "changedefaultfavicon.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "event.js"
    ],
    "permissions": [
        "http:\/\/www.youtube.com\/"
    ]
}