Image Rotate Context

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

Vad är Image Rotate Context?

Image Rotate Context är en Chrome-tillägg utvecklad av robert, och dess huvudfunktion är "Allows you to rotate an image with the right click context menu".

Tilläggsskärmbilder

screenshot

Ladda ner Image Rotate Context-förlängningens CRX-fil

Ladda ner Image Rotate Context-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Image Rotate Context Image Rotate Context
ID mbfblhpconbgpgmphhlonlcbnmebdeme
Officiell webbadress https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme
Beskrivning Allows you to rotate an image with the right click context menu
Filstorlek 3.91 KB
Antal Installationer 20,000
Aktuell Version 1.0.0
Senast Uppdaterad 2018-12-01
Publiceringsdatum 2018-11-27
Betyg 3.03/5 Totalt 38 Betyg
Utvecklare robert
Betalningssätt free
Stödda Språk 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
        }
    ]
}