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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
        }
    ]
}