Simple Image Rotator

(extremely) basic extension to rotate images in-place

ما هو Simple Image Rotator؟

Simple Image Rotator هو إضافة Chrome تم تطويرها بواسطة major، والميزة الرئيسية لها هي "(extremely) basic extension to rotate images in-place".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Simple Image Rotator

قم بتنزيل ملفات الامتداد Simple Image Rotator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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
عنوان صفحة المساعدة 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"
    ]
}