Quick Snip
Browse web and capture tabs you like, easy and quick.
Τι είναι το Quick Snip;
Το Quick Snip είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Frooty Studios, και η κύρια λειτουργία του είναι "Browse web and capture tabs you like, easy and quick.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Quick Snip
Λήψη αρχείων επέκτασης Quick Snip σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Quick tab capture tool. * Take screenshot of full tab. * Capture specific region screenshot. Once captured! you're screenshot will be ready to be used by pasting it any where in your documents. *****Version 1.1***** *Added shortcuts to capture screen On windows *Full screen - Ctrl+Shift+1 *Area capture - Ctrl+Shift+2 On mac *Full screen - Command+shift+1 *Area capture - Command+shift+2 *notifications on browser tab *Bug fixes *****Version 1.0***** *Updated extension with the latest extension development environment manifest v3. *Bug fixes
Βασικές Πληροφορίες Επέκτασης
Όνομα | Quick Snip |
ID | gjjhmphibjpmjbeghgjgecennojdohgc |
Επίσημο URL | https://chromewebstore.google.com/detail/quick-snip/gjjhmphibjpmjbeghgjgecennojdohgc |
Περιγραφή | Browse web and capture tabs you like, easy and quick. |
Μέγεθος Αρχείου | 903 KB |
Αριθμός Εγκαταστάσεων | 2,000 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2023-03-01 |
Ημερομηνία Δημοσίευσης | 2022-01-10 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Frooty Studios |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.1.0", "name": "Quick Snip", "icons": { "32": "assets\/icons\/32.png", "64": "assets\/icons\/64.png" }, "action": { "default_icon": "assets\/icons\/64.png", "default_popup": "\/view\/popup.html", "default_title": "Take a Screenshot" }, "description": "Browse web and capture tabs you like, easy and quick.", "permissions": [ "activeTab", "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_idle", "js": [ "utility\/notification.js", "lib\/customLib\/urlValidator.js", "content\/content_script.js" ], "css": [ "styles\/extraContent.css" ] } ], "background": { "service_worker": "mainServiceWorker.js" }, "web_accessible_resources": [ { "resources": [ "assets\/icons\/32.png" ], "matches": [ "*:\/\/*\/*" ] } ], "commands": { "full_screenshot": { "suggested_key": { "windows": "Ctrl+Shift+1", "mac": "Command+Shift+1", "linux": "Ctrl+Shift+1" }, "description": "captures full screenshot" }, "region_screenshot": { "suggested_key": { "windows": "Ctrl+Shift+2", "mac": "Command+Shift+2", "linux": "Ctrl+Shift+2" }, "description": "captures region screenshot" } } } |