Video Bar

Customizable progress bar for Youtube videos and other web sites

Τι είναι το Video Bar;

Το Video Bar είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον alikims, και η κύρια λειτουργία του είναι "Customizable progress bar for Youtube videos and other web sites".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Bar

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

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

                        Adds a progress bar to YouTube videos and videos on other web sites. 

This helps, in a non-intrusive way, to keep track of the video progress while all the controls are hidden.

The progress bar position, size, colors, timer font and mouse-over behavior can be customized in the options. The page has a live preview of the bar with "Save settings" and "Restore default" buttons.

All settings are kept in the local browser's storage. 

Left mouse click on the extension's icon turns it on/off for each browser's tab.                    

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

Όνομα Video Bar Video Bar
ID nediigdbkfmemfcleolaonlpbigjhjhi
Επίσημο URL https://chromewebstore.google.com/detail/video-bar/nediigdbkfmemfcleolaonlpbigjhjhi
Περιγραφή Customizable progress bar for Youtube videos and other web sites
Μέγεθος Αρχείου 17.83 KB
Αριθμός Εγκαταστάσεων 99
Τρέχουσα Έκδοση 0.0.7
Τελευταία Ενημέρωση 2021-09-20
Ημερομηνία Δημοσίευσης 2021-09-16
Αξιολόγηση 4.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής alikims
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Video Bar",
    "version": "0.0.7",
    "description": "Customizable progress bar for Youtube videos and other web sites",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "ico\/16.png",
            "48": "ico\/48.png",
            "128": "ico\/128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "bar_on.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "ico\/16.png",
        "48": "ico\/48.png",
        "128": "ico\/128.png"
    }
}