Flipper
Rotate, zoom, and mirror videos, images, and more.
What is Flipper?
Flipper is a Chrome extension developed by Ben Brescka, and its main feature is "Rotate, zoom, and mirror videos, images, and more.".
Extension Screenshots
Download Flipper Extension CRX File
Download Flipper 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
Flipper is the answer to media that has been altered before it has been uploaded. If you've ever come across a video that is backwards or small part of the total screen, this extension is for you. Flipper adds a small menu to your right click button that allows you to choose how you want the element altered. Users can flip an element, mirror it, or zoom into a particular area. For more information and examples, visit our website or support site linked here in the store.
Extension Basic Information
Name | Flipper |
ID | ndbojakfkagkdhnfjdkannpehpfdnaan |
Official URL | https://chromewebstore.google.com/detail/flipper/ndbojakfkagkdhnfjdkannpehpfdnaan |
Description | Rotate, zoom, and mirror videos, images, and more. |
File Size | 69.42 KB |
Installation Count | 2,074 |
Current Version | 1.0 |
Last Updated | 2019-02-23 |
Publish Date | 2019-02-21 |
Rating | 3.67/5 Total 6 Ratings |
Developer | Ben Brescka |
Payment Type | free |
Extension Website | https://github.com/brescka/flipper |
Help Page URL | https://github.com/brescka/flipper#user-guide |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Flipper", "version": "1.0", "description": "Rotate, zoom, and mirror videos, images, and more.", "permissions": [ "activeTab", "contextMenus" ], "icons": { "16": "assets\/icons\/flipper16.png", "24": "assets\/icons\/flipper24.png", "32": "assets\/icons\/flipper32.png", "40": "assets\/icons\/flipper40.png", "48": "assets\/icons\/flipper48.png", "64": "assets\/icons\/flipper64.png", "128": "assets\/icons\/flipper128.png" }, "browser_action": { "default_title": "Flipper", "default_icon": { "16": "assets\/icons\/flipper16.png", "24": "assets\/icons\/flipper24.png", "32": "assets\/icons\/flipper32.png", "40": "assets\/icons\/flipper40.png", "48": "assets\/icons\/flipper48.png", "64": "assets\/icons\/flipper64.png", "128": "assets\/icons\/flipper128.png" }, "default_popup": "src\/popup.html" }, "background": { "scripts": [ "src\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "src\/js\/content.js" ], "css": [ "src\/css\/content.css" ], "run_at": "document_end" } ], "manifest_version": 2, "web_accessible_resources": [ "assets\/icons\/*" ] } |