Simple Image Rotator

(extremely) basic extension to rotate images in-place

Simple Image Rotatorとは何ですか?

Simple Image Rotatorはmajorによって開発されたChromeの拡張機能で、その主な機能は「(extremely) basic extension to rotate images in-place」です。

拡張機能のスクリーンショット

screenshot

Simple Image Rotator拡張機能のCRXファイルをダウンロード

Simple Image Rotator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        INCREDIBLY simple app to (hopefully) rotate images in-place. Simply right-click on an image, and choose desired orientation in the menu. Doesn't always work but is dumb and (just about) functional.

Just applies CSS `-webkit-transform: rotate(Xdeg)` where x is 0, 90, 180, or 270. Does not attempt to resize or re-centre or any other smarts                    

拡張機能の基本情報

名前 Simple Image Rotator Simple Image Rotator
ID celbdinhikbidipcbkmphghkoibafbik
公式URL https://chromewebstore.google.com/detail/simple-image-rotator/celbdinhikbidipcbkmphghkoibafbik
説明 (extremely) basic extension to rotate images in-place
ファイルサイズ 3.82 KB
インストール数 3,616
現在のバージョン 0.0.2
最終更新日 2022-08-03
公開日 2020-02-26
評価 2.50/5 合計 14 レビュー
開発者 major
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/majorsimon/chrome-simple-image-rotator
ヘルプページのURL https://github.com/majorsimon/chrome-simple-image-rotator
対応言語 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Image Rotator",
    "description": "(extremely) basic extension to rotate images in-place",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ]
}