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…
Hvad er Copy & Paste?
Copy & Paste er en Chrome-udvidelse udviklet af gal.bogdan2015, og dens hovedfunktion er "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…".
Udvidelsesskærmbilleder
Download Copy & Paste-udvidelses-CRX-fil
Download Copy & Paste-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Copy & Paste |
ID | oijiikmgkljldpbpddpmhiblpgkciobn |
Officiel URL | https://chromewebstore.google.com/detail/copy-paste/oijiikmgkljldpbpddpmhiblpgkciobn |
Beskrivelse | 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… |
Filstørrelse | 81.47 KB |
Antal Installationer | 889 |
Nuværende Version | 1.0 |
Senest Opdateret | 2020-06-29 |
Udgivelsesdato | 2020-06-28 |
Udvikler | gal.bogdan2015 |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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'" } |