Video Scrubber for Instagram

Displays player controls for video content on Instagram

Τι είναι το Video Scrubber for Instagram;

Το Video Scrubber for Instagram είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.georgemike.com, και η κύρια λειτουργία του είναι "Displays player controls for video content on Instagram".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Video Scrubber for Instagram adds video controls to your videos on Instagram. There's an optional page-level progress indicator that's rull cute. It's salmon.

Bonus Features:
- Keyboard shortcuts to:
  * Play/pause
  * Jump forward/back 5s
  * Increase/decrease the volume of videos
  * Change the playback rate from: .25x - 2x
  * Play videos in pop-out windows.
- Remember and automatically set your last video volume level.

It does all these things because it cares about you as as person. About your well-being.

Updated: October 2022                    

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

Όνομα Video Scrubber for Instagram Video Scrubber for Instagram
ID apondjajmejlodhkaenofcicoiiekghf
Επίσημο URL https://chromewebstore.google.com/detail/video-scrubber-for-instag/apondjajmejlodhkaenofcicoiiekghf
Περιγραφή Displays player controls for video content on Instagram
Μέγεθος Αρχείου 256 KB
Αριθμός Εγκαταστάσεων 6,739
Τρέχουσα Έκδοση 5.0.1
Τελευταία Ενημέρωση 2023-07-06
Ημερομηνία Δημοσίευσης 2020-05-27
Αξιολόγηση 4.27/5 Συνολικά 55 Αξιολογήσεις
Προγραμματιστής https://www.georgemike.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.georgemike.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.georgemike.com/
URL της Σελίδας Πολιτικής Απορρήτου https://www.georgemike.com/chrome/privacypolicy
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "5.0.1",
    "name": "Video Scrubber for Instagram",
    "short_name": "Video Scrubber",
    "description": "Displays player controls for video content on Instagram",
    "homepage_url": "https:\/\/georgemike.com",
    "icons": {
        "128": "images\/icon.128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/instagram.com\/*",
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "lib\/progress.js-0.1.0\/progress.min.js",
                "js\/lib\/FileSaver.v2.0.2.min.js",
                "js\/ActiveVideoManager.js",
                "js\/BrowserEnv.js",
                "js\/FeatureIntroducer.js",
                "js\/InstaUtils.js",
                "js\/VideoModifier.js",
                "js\/config.js",
                "js\/utils.js",
                "js\/content.js"
            ],
            "css": [
                "lib\/progress.js-0.1.0\/progressjs.min.css",
                "css\/scrub.css"
            ],
            "all_frames": true
        }
    ],
    "host_permissions": [
        "https:\/\/instagram.com\/*",
        "https:\/\/*.instagram.com\/*"
    ]
}