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
官方網址 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
        }
    ]
}