Image Rotate Context
Allows you to rotate an image with the right click context menu
Was ist Image Rotate Context?
Image Rotate Context ist eine Chrome-Erweiterung, die von robert entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to rotate an image with the right click context menu".
Erweiterungsscreenshots
Image Rotate Context-Erweiterungs-CRX-Datei herunterladen
Laden Sie Image Rotate Context-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Adds a "Rotate" menu option when right clicking images allowing you to rotate Right or Left
Grundlegende Informationen zur Erweiterung
Name | Image Rotate Context |
ID | mbfblhpconbgpgmphhlonlcbnmebdeme |
Offizielle URL | https://chromewebstore.google.com/detail/image-rotate-context/mbfblhpconbgpgmphhlonlcbnmebdeme |
Beschreibung | Allows you to rotate an image with the right click context menu |
Dateigröße | 3.91 KB |
Installationsanzahl | 20,000 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2018-12-01 |
Veröffentlichungsdatum | 2018-11-27 |
Bewertung | 3.03/5 Insgesamt 38 Bewertungen |
Entwickler | robert |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |