Image Rotate Context
Allows you to rotate an image with the right click context menu
Cos'è Image Rotate Context?
Image Rotate Context è un'estensione di Chrome sviluppata da robert, e la sua funzione principale è "Allows you to rotate an image with the right click context menu".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Image Rotate Context
Scarica i file di estensione Image Rotate Context in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left
Informazioni di Base sull'Estensione
Nome | Image Rotate Context |
ID | mbfblhpconbgpgmphhlonlcbnmebdeme |
URL Ufficiale | https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme |
Descrizione | Allows you to rotate an image with the right click context menu |
Dimensione del File | 3.91 KB |
Conteggio Installazioni | 20,000 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2018-12-01 |
Data di Pubblicazione | 2018-11-27 |
Valutazione | 3.03/5 Totale 38 Valutazioni |
Sviluppatore | robert |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |