Always Copy
A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.
Vad är Always Copy?
Always Copy är en Chrome-tillägg utvecklad av japamat, och dess huvudfunktion är "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".
Tilläggsskärmbilder
Ladda ner Always Copy-förlängningens CRX-fil
Ladda ner Always Copy-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Lets you copy highlighted text to your clip board even when the page doesn't allow you to do so by right clicking the traditional copy button or using ⌘ + c (windows: ctrl + c) doesn't work.
Grundläggande Information om Tillägg
Namn | Always Copy |
ID | pfiieiadpcemdkcaaicekbiokgnojnim |
Officiell webbadress | https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim |
Beskrivning | A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work. |
Filstorlek | 6.92 KB |
Antal Installationer | 288 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-06-17 |
Publiceringsdatum | 2020-06-16 |
Utvecklare | japamat |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Always Copy", "version": "1.0", "description": "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.", "permissions": [ "contextMenus", "activeTab" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "images\/copy_16.png", "32": "images\/copy_32.png", "48": "images\/copy_48.png", "128": "images\/copy_128.png" } }, "icons": { "16": "images\/copy_16.png", "32": "images\/copy_32.png", "48": "images\/copy_48.png", "128": "images\/copy_128.png" }, "manifest_version": 2 } |