Copy Trim
This extension remove white spaces before and after the copy
Apa itu Copy Trim?
Copy Trim adalah ekstensi Chrome yang dikembangkan oleh galvish, dan fitur utamanya adalah "This extension remove white spaces before and after the copy".
Unduh Berkas CRX Ekstensi Copy Trim
Unduh file ekstensi Copy Trim dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
Informasi Dasar Ekstensi
Nama | |
ID | jgmiikpncidgpcmbpafdkjkfamjnilln |
URL Resmi | https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln |
Deskripsi | This extension remove white spaces before and after the copy |
Ukuran File | 8.05 KB |
Jumlah Instalasi | 128 |
Versi Saat Ini | 0.0.3 |
Terakhir Diperbarui | 2017-06-26 |
Tanggal Publikasi | 2017-06-26 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | galvish |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/GalVishnevsky/CopyTrim |
Bahasa yang Didukung | 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" ] } ] } |