Copy & Paste
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…
Τι είναι το Copy & Paste;
Το Copy & Paste είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gal.bogdan2015, και η κύρια λειτουργία του είναι "The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Copy & Paste
Λήψη αρχείων επέκτασης Copy & Paste σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have quick access to them. Save the data you need with one click by simply copying it. Just use Ctrl+c.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Copy & Paste |
ID | oijiikmgkljldpbpddpmhiblpgkciobn |
Επίσημο URL | https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn |
Περιγραφή | The extension will allow you to speed up the time of your work. All your copies will be stored in the extension and you will have… |
Μέγεθος Αρχείου | 81.47 KB |
Αριθμός Εγκαταστάσεων | 889 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-06-29 |
Ημερομηνία Δημοσίευσης | 2020-06-28 |
Προγραμματιστής | gal.bogdan2015 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy & Paste", "version": "1.0", "icons": { "32": "img\/logo32.png", "48": "img\/logo48.png" }, "manifest_version": 2, "permissions": [ "activeTab", "*:\/\/fonts.googleapis.com\/*", "storage" ], "background": { "scripts": [ "js\/libs\/jquery-3.2.1.min.js", "js\/libs\/safeResponse.js", "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/oncopy.js" ] } ], "browser_action": { "default_title": "Copy & Paste", "default_icon": "img\/logo64.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |