Copy Trim
This extension remove white spaces before and after the copy
Copy Trimとは何ですか?
Copy Trimはgalvishによって開発されたChromeの拡張機能で、その主な機能は「This extension remove white spaces before and after the copy」です。
Copy Trim拡張機能のCRXファイルをダウンロード
Copy Trim拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | |
ID | jgmiikpncidgpcmbpafdkjkfamjnilln |
公式URL | https://chrome.google.com/webstore/detail/copy-trim/jgmiikpncidgpcmbpafdkjkfamjnilln |
説明 | This extension remove white spaces before and after the copy |
ファイルサイズ | 8.05 KB |
インストール数 | 128 |
現在のバージョン | 0.0.3 |
最終更新日 | 2017-06-26 |
公開日 | 2017-06-26 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | galvish |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/GalVishnevsky/CopyTrim |
対応言語 | 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" ] } ] } |