Copy Trim
This extension remove white spaces before and after the copy
Wat is Copy Trim?
Copy Trim is een Chrome-extensie ontwikkeld door galvish, en de belangrijkste functie is "This extension remove white spaces before and after the copy".
Download het CRX-bestand van de extensie Copy Trim
Download Copy Trim-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | |
ID | jgmiikpncidgpcmbpafdkjkfamjnilln |
Officiële URL | https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln |
Beschrijving | This extension remove white spaces before and after the copy |
Bestandsgrootte | 8.05 KB |
Aantal Installaties | 128 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2017-06-26 |
Publicatiedatum | 2017-06-26 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | galvish |
Betalingswijze | free |
Extensiewebsite | https://github.com/GalVishnevsky/CopyTrim |
Ondersteunde Talen | 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" ] } ] } |