clickForCode

Click to add a

 tag inside the HTML .

clickForCodeคืออะไร?

clickForCode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ryanpcmcquen และคุณลักษณะหลักของมันคือ "Click to add a

 tag inside the HTML ."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย clickForCode

ดาวน์โหลดไฟล์ส่วนขยาย clickForCode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

 Open source, of course: https://github.com/ryanpcmcquen/clickForCode Useful for when you have a PHP `var_dump();` and forgot to add a `
` tag.

It also automatically detects text only pages, and will automatically format them.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ clickForCode clickForCode
ID ihfahclbppdojebkcgggncbkobblacbm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clickforcode/ihfahclbppdojebkcgggncbkobblacbm
คำอธิบาย Click to add a
 tag inside the HTML .
ขนาดไฟล์ 19.82 KB
จำนวนการติดตั้ง 87
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2018-12-26
วันที่เผยแพร่ 2018-12-20
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา ryanpcmcquen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ryanpcmcquen/clickForCode
URL หน้าช่วยเหลือ https://github.com/ryanpcmcquen/clickForCode
ภาษาที่รองรับ en-US
manifest.json
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "clickForCode", "description": "Click to add a 
 tag inside the HTML .",
    "version": "0.2.0",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "512": "clickForCode.png"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "clickForCode.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "clickForCodeContent.js"
            ]
        }
    ]
}