Copy DOM Content
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.
Copy DOM Contentとは何ですか?
Copy DOM ContentはQoSMicro.comによって開発されたChromeの拡張機能で、その主な機能は「This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.」です。
拡張機能のスクリーンショット
Copy DOM Content拡張機能のCRXファイルをダウンロード
Copy DOM Content拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. An found will be converted to elements with the class "original_iframe" as long as they are from the same domain. 拡張機能の基本情報
名前
Copy DOM Content ID dmdbhcacalljmfmilnhmnhihdfoamdap 公式URL https://chromewebstore.google.com/detail/copy-dom-content/dmdbhcacalljmfmilnhmnhihdfoamdap 説明 This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements. ファイルサイズ 13.8 KB インストール数 803 現在のバージョン 1.1 最終更新日 2016-04-24 公開日 2016-04-24 評価 5.00/5 合計 2 レビュー 開発者 QoSMicro.com 支払い方法 free 対応言語 en-US manifest.json {
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"author": "Jose Manuel Sanchez",
"homepage_url": "http:\/\/qosmicro.com\/",
"name": "Copy DOM Content",
"short_name": "Copy DOM",
"description": "This extension tries to copy the current page DOM elements to the clipboard, including dynamic JavaScript generated elements.",
"version": "1.1",
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_popup": "index.html",
"default_title": "Copy DOM Content"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
}
}