Video Scrubber for Instagram
Displays player controls for video content on Instagram
什么是Video Scrubber for Instagram?
Video Scrubber for Instagram是由https://www.georgemike.com开发的Chrome扩展程序,该扩展的主要功能是“Displays player controls for video content on Instagram”。
扩展截图
下载Video Scrubber for Instagram扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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\/*"
]
} | |