Copy Element Text
Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.
Copy Element Textとは何ですか?
Copy Element Textはbracketsageによって開発されたChromeの拡張機能で、その主な機能は「Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.」です。
Copy Element Text拡張機能のCRXファイルをダウンロード
Copy Element Text拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Copy Element Text lets you right click on an element and copy its contents or the contents of parent elements. Useful for pages that won't let you highlight.
拡張機能の基本情報
名前 | ![]() |
ID | ikhdonfbocnkmhhcaejgopdlknaemhaj |
公式URL | https://chrome.google.com/webstore/detail/copy-element-text/ikhdonfbocnkmhhcaejgopdlknaemhaj |
説明 | Copy Element Text is a lets you right click on an element and copy its contents to your clipboard. |
ファイルサイズ | 32.97 KB |
インストール数 | 161 |
現在のバージョン | 0.0.2 |
最終更新日 | 2015-08-06 |
公開日 | 2015-08-06 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | bracketsage |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "jq.js", "background.js" ] }, "content_scripts": [ { "js": [ "jq.js", "content.js" ], "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "description": "Copy Element Text is a lets you right click on an element and copy its contents to your clipboard.", "manifest_version": 2, "name": "Copy Element Text", "permissions": [ "activeTab", "contextMenus", "clipboardWrite", "clipboardRead" ], "short_name": "Copy ELement Text", "version": "0.0.2" } |