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
电子邮箱 [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"
    ]
}