Duplicate Content

Duplicate all the content of the current page

Hvad er Duplicate Content?

Duplicate Content er en Chrome-udvidelse udviklet af Martijn Nieuwenhuizen, og dens hovedfunktion er "Duplicate all the content of the current page".

Udvidelsesskærmbilleder

screenshot

Download Duplicate Content-udvidelses-CRX-fil

Download Duplicate Content-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Duplicate Content Duplicate Content
ID lelfnogjdcdgannnoddmgepkajiebpdg
Officiel URL https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg
Beskrivelse Duplicate all the content of the current page
Filstørrelse 504 KB
Antal Installationer 122
Nuværende Version 0.0.2
Senest Opdateret 2017-10-06
Udgivelsesdato 2017-10-06
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Martijn Nieuwenhuizen
Betalingsmetode free
Understøttede Sprog 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"
    ]
}