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.
What is Always Copy?
Always Copy is a Chrome extension developed by japamat, and its main feature is "A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work.".
Extension Screenshots
Download Always Copy Extension CRX File
Download Always Copy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Always Copy |
ID | pfiieiadpcemdkcaaicekbiokgnojnim |
Official URL | https://chromewebstore.google.com/detail/always-copy/pfiieiadpcemdkcaaicekbiokgnojnim |
Description | A simple extension that lets you always copy highlighted items to the clipboard, even when right clicking or ctrl + c doesn't work. |
File Size | 6.92 KB |
Installation Count | 288 |
Current Version | 1.0 |
Last Updated | 2020-06-17 |
Publish Date | 2020-06-16 |
Developer | japamat |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |