Duplicate Content
Duplicate all the content of the current page
Duplicate Contentとは何ですか?
Duplicate ContentはMartijn Nieuwenhuizenによって開発されたChromeの拡張機能で、その主な機能は「Duplicate all the content of the current page」です。
拡張機能のスクリーンショット
Duplicate Content拡張機能のCRXファイルをダウンロード
Duplicate Content拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Duplicate all the content on a page to check if your design/website can handle it. 拡張機能の基本情報
| 名前 | |
| ID | lelfnogjdcdgannnoddmgepkajiebpdg |
| 公式URL | https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg |
| 説明 | Duplicate all the content of the current page |
| ファイルサイズ | 504 KB |
| インストール数 | 122 |
| 現在のバージョン | 0.0.2 |
| 最終更新日 | 2017-10-06 |
| 公開日 | 2017-10-06 |
| 評価 | 5.00/5 合計 2 レビュー |
| 開発者 | Martijn Nieuwenhuizen |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Duplicate Content",
"description": "Duplicate all the content of the current page",
"version": "0.0.2",
"browser_action": {
"default_icon": "128.png",
"default_title": "Duplicate text"
},
"icons": {
"19": "19.png",
"48": "48.png",
"128": "128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content.js"
]
}
],
"permissions": [
"activeTab",
"tabs"
]
} | |