Duplicate Content

Duplicate all the content of the current page

Apa itu Duplicate Content?

Duplicate Content adalah ekstensi Chrome yang dikembangkan oleh Martijn Nieuwenhuizen, dan fitur utamanya adalah "Duplicate all the content of the current page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Duplicate Content

Unduh file ekstensi Duplicate Content dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Duplicate Content Duplicate Content
ID lelfnogjdcdgannnoddmgepkajiebpdg
URL Resmi https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg
Deskripsi Duplicate all the content of the current page
Ukuran File 504 KB
Jumlah Instalasi 122
Versi Saat Ini 0.0.2
Terakhir Diperbarui 2017-10-06
Tanggal Publikasi 2017-10-06
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Martijn Nieuwenhuizen
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}