Image Rotate Context

Allows you to rotate an image with the right click context menu

什么是Image Rotate Context?

Image Rotate Context是由robert开发的Chrome扩展程序,该扩展的主要功能是“Allows you to rotate an image with the right click context menu”。

扩展截图

screenshot

下载Image Rotate Context扩展crx文件

下载Image Rotate Context扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left                    

扩展基本信息

名称 Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
官方URL https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
简介 Allows you to rotate an image with the right click context menu
文件大小 3.91 KB
安装次数 20,000
当前版本 1.0.0
更新时间 2018-12-01
上架时间 2018-11-27
评分 3.03/5 共38次评分
开发者 robert
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Image Rotate Context",
    "manifest_version": 2,
    "version": "1.0.0",
    "description": "Allows you to rotate an image with the right click context menu",
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "inpage.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}