Video Scrubber for Instagram
Displays player controls for video content on Instagram
Was ist Video Scrubber for Instagram?
Video Scrubber for Instagram ist eine Chrome-Erweiterung, die von https://www.georgemike.com entwickelt wurde, und ihr Hauptmerkmal ist "Displays player controls for video content on Instagram".
Erweiterungsscreenshots
Video Scrubber for Instagram-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video Scrubber for Instagram-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | apondjajmejlodhkaenofcicoiiekghf |
| Offizielle URL | https://chromewebstore.google.com/detail/video-scrubber-for-instag/apondjajmejlodhkaenofcicoiiekghf |
| Beschreibung | Displays player controls for video content on Instagram |
| Dateigröße | 256 KB |
| Installationsanzahl | 6,739 |
| Aktuelle Version | 5.0.1 |
| Letztes Update | 2023-07-06 |
| Veröffentlichungsdatum | 2020-05-27 |
| Bewertung | 4.27/5 Insgesamt 55 Bewertungen |
| Entwickler | https://www.georgemike.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.georgemike.com/ |
| Hilfeseite URL | https://www.georgemike.com/ |
| URL der Datenschutzrichtlinien-Seite | https://www.georgemike.com/chrome/privacypolicy |
| Unterstützte Sprachen | 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\/*"
]
} | |