imgur Uploader
Right-click uploading of images and screenshots anonymously or to your imgur account.
Τι είναι το imgur Uploader;
Το imgur Uploader είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον graeme phillips, και η κύρια λειτουργία του είναι "Right-click uploading of images and screenshots anonymously or to your imgur account.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης imgur Uploader
Λήψη αρχείων επέκτασης imgur Uploader σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Right-click uploading of images and screenshots to imgur, anonymously or to your imgur account. This is intended as a less feature-rich replacement for William Parry's original imgur Chrome extension which he has removed from the web store (I believe it is back and maintained as the Metronomik extension), and makes use of his icons. Version 2.4.1: Fix bug in oauth flow that made some people unable to authenticate with imgur. Version 2.4: Update to Manifest V3. Fix capture area bug when the browser's default zoom level was not 1.0, caused by incorrectly applying a zoom correction factor when the browser had already applied that correction for us. Version 2.3.1: Fix bug caused by improper use of a browser API, which are more strict nowadays. Version 2.3: Relaxed permission requirements as made possible by updates to Chrome's extension API (or, possibly, just their documentation). Version 2.2: Inverted the selection rectangle. This won't ever cause the selection rectangle to be in the captured image, which affected some users. Also, uploading images should work with more kinds of images now, including data urls and SVGs. Version 2.1: I was lying in bed last night and it occurred to me I'd added support for higher dpis but not different zoom levels. This was fortunate as when I went to muck around with it I discovered I'd introduced a bug that affected many if not most users. You can take captures while zoomed in or out now. Version 2.0: This update removes all 3rd party code and so the code for imgur Uploader is now in the public domain. Additionally: - Rewrite of capture area to fix various bugs, work in more websites, and respect high dpi displays. - Added requested features: not focusing tabs of uploaded images; copying to clipboard without opening images - Uses https all of the time - Opens album page when uploading into albums Version 1.2: Added uploading directly into albums.
Βασικές Πληροφορίες Επέκτασης
Όνομα | imgur Uploader |
ID | lcpkicdemehhmkjolekhlglljnkggfcf |
Επίσημο URL | https://chromewebstore.google.com/detail/imgur-uploader/lcpkicdemehhmkjolekhlglljnkggfcf |
Περιγραφή | Right-click uploading of images and screenshots anonymously or to your imgur account. |
Μέγεθος Αρχείου | 21.58 KB |
Αριθμός Εγκαταστάσεων | 20,000 |
Τρέχουσα Έκδοση | 2.4.1 |
Τελευταία Ενημέρωση | 2022-06-22 |
Ημερομηνία Δημοσίευσης | 2019-06-13 |
Αξιολόγηση | 3.81/5 Συνολικά 140 Αξιολογήσεις |
Προγραμματιστής | graeme phillips |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/graemephi/imgur-uploader |
URL της Σελίδας Πολιτικής Απορρήτου | https://github.com/graemephi/imgur-uploader/wiki |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "imgur Uploader", "description": "Right-click uploading of images and screenshots anonymously or to your imgur account.", "version": "2.4.1", "icons": { "16": "img\/logo_16.png", "48": "img\/logo_48.png", "128": "img\/logo.png" }, "permissions": [ "activeTab", "contextMenus", "notifications", "storage", "scripting" ], "optional_permissions": [ "clipboardWrite" ], "background": { "service_worker": "background.js", "type": "module" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "web_accessible_resources": [ { "resources": [ "options.html" ], "matches": [ "https:\/\/api.imgur.com\/*" ] } ] } |