Duplicate Content

Duplicate all the content of the current page

Duplicate Content là gì?

Duplicate Content là một tiện ích mở rộng Chrome được phát triển bởi Martijn Nieuwenhuizen, và tính năng chính của nó là "Duplicate all the content of the current page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Duplicate Content

Tải xuống các tệp mở rộng Duplicate Content dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Duplicate Content Duplicate Content
ID lelfnogjdcdgannnoddmgepkajiebpdg
URL Chính Thức https://chromewebstore.google.com/detail/duplicate-content/lelfnogjdcdgannnoddmgepkajiebpdg
Mô tả Duplicate all the content of the current page
Kích Thước Tệp 504 KB
Số Lần Cài Đặt 122
Phiên Bản Hiện Tại 0.0.2
Cập Nhật Lần Cuối 2017-10-06
Ngày Phát Hành 2017-10-06
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Martijn Nieuwenhuizen
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}