Copy Trim
This extension remove white spaces before and after the copy
What is Copy Trim?
Copy Trim is a Chrome extension developed by galvish, and its main feature is "This extension remove white spaces before and after the copy".
Download Copy Trim Extension CRX File
Download Copy Trim 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
Extension Basic Information
Name | |
ID | jgmiikpncidgpcmbpafdkjkfamjnilln |
Official URL | https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln |
Description | This extension remove white spaces before and after the copy |
File Size | 8.05 KB |
Installation Count | 128 |
Current Version | 0.0.3 |
Last Updated | 2017-06-26 |
Publish Date | 2017-06-26 |
Rating | 5.00/5 Total 3 Ratings |
Developer | galvish |
Payment Type | free |
Extension Website | https://github.com/GalVishnevsky/CopyTrim |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Trim", "version": "0.0.3", "manifest_version": 2, "description": "This extension remove white spaces before and after the copy", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": true }, "browser_action": { "default_popup": "src\/bg\/popup.html" }, "permissions": [ "clipboardRead", "clipboardWrite" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/oncopy.js" ] } ] } |