Duplicate Content

Duplicate all the content of the current page

Что такое Duplicate Content?

Duplicate Content - это расширение Chrome, разработанное Martijn Nieuwenhuizen, и его основная функция - "Duplicate all the content of the current page".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Duplicate Content

Скачайте файлы расширений Duplicate Content в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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