Image Rotate Context

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

Image Rotate Contextคืออะไร?

Image Rotate Context เป็นส่วนขยายของ Chrome ที่พัฒนาโดย robert และคุณลักษณะหลักของมันคือ "Allows you to rotate an image with the right click context menu"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image Rotate Context

ดาวน์โหลดไฟล์ส่วนขยาย 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
        }
    ]
}