Duplicate Content

Duplicate all the content of the current page

Vad är Duplicate Content?

Duplicate Content är en Chrome-tillägg utvecklad av Martijn Nieuwenhuizen, och dess huvudfunktion är "Duplicate all the content of the current page".

Tilläggsskärmbilder

screenshot

Ladda ner Duplicate Content-förlängningens CRX-fil

Ladda ner Duplicate Content-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Duplicate Content Duplicate Content
ID lelfnogjdcdgannnoddmgepkajiebpdg
Officiell webbadress https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg
Beskrivning Duplicate all the content of the current page
Filstorlek 504 KB
Antal Installationer 122
Aktuell Version 0.0.2
Senast Uppdaterad 2017-10-06
Publiceringsdatum 2017-10-06
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Martijn Nieuwenhuizen
Betalningssätt free
Stödda Språk 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"
    ]
}