Video Scrubber for Instagram

Displays player controls for video content on Instagram

Cos'è Video Scrubber for Instagram?

Video Scrubber for Instagram è un'estensione di Chrome sviluppata da https://www.georgemike.com, e la sua funzione principale è "Displays player controls for video content on Instagram".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Video Scrubber for Instagram

Scarica i file di estensione Video Scrubber for Instagram in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Video Scrubber for Instagram Video Scrubber for Instagram
ID apondjajmejlodhkaenofcicoiiekghf
URL Ufficiale https://chromewebstore.google.com/detail/video-scrubber-for-instag/apondjajmejlodhkaenofcicoiiekghf
Descrizione Displays player controls for video content on Instagram
Dimensione del File 256 KB
Conteggio Installazioni 6,739
Versione Corrente 5.0.1
Ultimo Aggiornamento 2023-07-06
Data di Pubblicazione 2020-05-27
Valutazione 4.27/5 Totale 55 Valutazioni
Sviluppatore https://www.georgemike.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.georgemike.com/
URL della Pagina di Aiuto https://www.georgemike.com/
URL della Pagina della Politica sulla Privacy https://www.georgemike.com/chrome/privacypolicy
Lingue Supportate 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\/*"
    ]
}