Flipper
Rotate, zoom, and mirror videos, images, and more.
Flipperとは何ですか?
FlipperはBen Bresckaによって開発されたChromeの拡張機能で、その主な機能は「Rotate, zoom, and mirror videos, images, and more.」です。
拡張機能のスクリーンショット
Flipper拡張機能のCRXファイルをダウンロード
Flipper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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. 拡張機能の基本情報
| 名前 | |
| ID | ndbojakfkagkdhnfjdkannpehpfdnaan |
| 公式URL | https://chromewebstore.google.com/detail/flipper/ndbojakfkagkdhnfjdkannpehpfdnaan |
| 説明 | Rotate, zoom, and mirror videos, images, and more. |
| ファイルサイズ | 69.42 KB |
| インストール数 | 2,074 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2019-02-23 |
| 公開日 | 2019-02-21 |
| 評価 | 3.67/5 合計 6 レビュー |
| 開発者 | Ben Brescka |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/brescka/flipper |
| ヘルプページのURL | https://github.com/brescka/flipper#user-guide |
| 対応言語 | 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\/*"
]
} | |