Flipper
Rotate, zoom, and mirror videos, images, and more.
Flipper là gì?
Flipper là một tiện ích mở rộng Chrome được phát triển bởi Ben Brescka, và tính năng chính của nó là "Rotate, zoom, and mirror videos, images, and more.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Flipper
Tải xuống các tệp mở rộng Flipper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Flipper |
ID | ndbojakfkagkdhnfjdkannpehpfdnaan |
URL Chính Thức | https://chromewebstore.google.com/detail/flipper/ndbojakfkagkdhnfjdkannpehpfdnaan |
Mô tả | Rotate, zoom, and mirror videos, images, and more. |
Kích Thước Tệp | 69.42 KB |
Số Lần Cài Đặt | 2,074 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-02-23 |
Ngày Phát Hành | 2019-02-21 |
Đánh Giá | 3.67/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | Ben Brescka |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/brescka/flipper |
URL Trang Trợ Giúp | https://github.com/brescka/flipper#user-guide |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |