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.
擴展基本資訊
名稱 | Duplicate Content |
ID | lelfnogjdcdgannnoddmgepkajiebpdg |
官方網址 | 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" ] } |