Copy Trim
This extension remove white spaces before and after the copy
Cos'è Copy Trim?
Copy Trim è un'estensione di Chrome sviluppata da galvish, e la sua funzione principale è "This extension remove white spaces before and after the copy".
Scarica il file CRX dell'estensione Copy Trim
Scarica i file di estensione Copy Trim in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | jgmiikpncidgpcmbpafdkjkfamjnilln |
| URL Ufficiale | https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln |
| Descrizione | This extension remove white spaces before and after the copy |
| Dimensione del File | 8.05 KB |
| Conteggio Installazioni | 128 |
| Versione Corrente | 0.0.3 |
| Ultimo Aggiornamento | 2017-06-26 |
| Data di Pubblicazione | 2017-06-26 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | galvish |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/GalVishnevsky/CopyTrim |
| Lingue Supportate | 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"
]
}
]
} | |