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