Duplicate Content

Duplicate all the content of the current page

O que é Duplicate Content?

Duplicate Content é uma extensão do Chrome desenvolvida por Martijn Nieuwenhuizen, e sua principal característica é "Duplicate all the content of the current page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Duplicate Content

Baixe arquivos de extensão Duplicate Content no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Duplicate all the content on a page to check if your design/website can handle it.                    

Informações Básicas da Extensão

Nome Duplicate Content Duplicate Content
ID lelfnogjdcdgannnoddmgepkajiebpdg
URL Oficial https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg
Descrição Duplicate all the content of the current page
Tamanho do Arquivo 504 KB
Contagem de Instalações 122
Versão Atual 0.0.2
Última Atualização 2017-10-06
Data de Publicação 2017-10-06
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Martijn Nieuwenhuizen
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}