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
官方網址 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
電子郵箱 [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"
    ]
}