Flipper
Rotate, zoom, and mirror videos, images, and more.
Co je Flipper?
Flipper je rozšíření Chrome vyvinuté Ben Brescka, a jeho hlavní funkcí je „Rotate, zoom, and mirror videos, images, and more.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Flipper
Stáhněte si soubory rozšíření Flipper ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Flipper |
ID | ndbojakfkagkdhnfjdkannpehpfdnaan |
Oficiální URL | https://chromewebstore.google.com/detail/flipper/ndbojakfkagkdhnfjdkannpehpfdnaan |
Popis | Rotate, zoom, and mirror videos, images, and more. |
Velikost souboru | 69.42 KB |
Počet instalací | 2,074 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2019-02-23 |
Datum Vydání | 2019-02-21 |
Hodnocení | 3.67/5 Celkem 6 Hodnocení |
Vývojář | Ben Brescka |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/brescka/flipper |
URL Stránky Nápovědy | https://github.com/brescka/flipper#user-guide |
Podporované Jazyky | 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\/*" ] } |