Duplicate Content

Duplicate all the content of the current page

Duplicate Content क्या है?

Duplicate Content Martijn Nieuwenhuizen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Duplicate all the content of the current page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Duplicate Content एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}