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”。

扩展截图

screenshot

下载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 Duplicate Content
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"
    ]
}