But really open image in new tab
But really open image in new tab
Τι είναι το But really open image in new tab;
Το But really open image in new tab είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον tom, και η κύρια λειτουργία του είναι "But really open image in new tab".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης But really open image in new tab
Λήψη αρχείων επέκτασης But really open image in new tab σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
You know when you right click an image there is the option to "Open image in new tab"? You know how it doesn't work if the image is covered by another hidden element? Wouldn't it be nice if you could just tell it to ignore those elements and just open the damn image hidden underneath. Well good news, that's what this extension does! Bonus features! * If there are lots of images stacked on top of each other, it will open all of the images. * It will even check for images using the CSS background-image property. * Not only that but it will work on SVGs too! Note: It doesn't work on the Chrome Web Store pages because they restrict extensions on here.
Βασικές Πληροφορίες Επέκτασης
Όνομα | But really open image in new tab |
ID | magmbbfoiobnjaflbhcjkmknfjcaeddk |
Επίσημο URL | https://chromewebstore.google.com/detail/but-really-open-image-in/magmbbfoiobnjaflbhcjkmknfjcaeddk |
Περιγραφή | But really open image in new tab |
Μέγεθος Αρχείου | 7.44 KB |
Αριθμός Εγκαταστάσεων | 368 |
Τρέχουσα Έκδοση | 0.2 |
Τελευταία Ενημέρωση | 2024-02-04 |
Ημερομηνία Δημοσίευσης | 2023-08-07 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | tom |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.tomchurchill.co.uk/ |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "But really open image in new tab", "description": "But really open image in new tab", "version": "0.2", "permissions": [ "contextMenus", "tabs" ], "icons": { "128": "icons\/icon.png" }, "background": { "service_worker": "js\/main.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "all_frames": true, "js": [ "js\/content.js" ], "css": [] } ] } |