MirrorTube
Provides useful features for dancers
What is MirrorTube?
MirrorTube is a Chrome extension developed by mii, and its main feature is "Provides useful features for dancers".
Extension Screenshots
Download MirrorTube Extension CRX File
Download MirrorTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Mirror YouTube videos, control playback speed, and set up repeating timestamps for looping videos. Perfect for learning dances from un-mirrored videos!
Extension Basic Information
Name | MirrorTube |
ID | pdebhiihcebhmcpmdncgfodomdnhbehj |
Official URL | https://chromewebstore.google.com/detail/mirrortube/pdebhiihcebhmcpmdncgfodomdnhbehj |
Description | Provides useful features for dancers |
File Size | 8.38 KB |
Installation Count | 36,749 |
Current Version | 0.3 |
Last Updated | 2019-04-04 |
Publish Date | 2019-04-04 |
Rating | 3.68/5 Total 73 Ratings |
Developer | mii |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MirrorTube", "description": "Provides useful features for dancers", "version": "0.3", "author": "katashin", "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "https:\/\/*.youtube.com\/", "declarativeContent", "activeTab" ], "page_action": { "default_icon": "images\/icon.png", "default_title": "MirrorTube", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "css": [ "css\/transform.css" ], "js": [ "js\/commands.js", "js\/adapters\/youtube-adapter.js" ] } ] } |