create-element-helper

A helper for `document.createElement()` that can be loaded into a script with `require`.

สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.org/scripts/559372/1716611/create-element-helper.js

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

ผู้เขียน
foldrr
เวอร์ชัน
0.0.1.20251218192539
สร้างเมื่อ
18-12-2025
อัปเดตเมื่อ
18-12-2025
Size
1.07 กิโลไบต์
สัญญาอนุญาต
ไม่มี

How to use

Load it in the script header.

// @require https://update.greasyfork.org/scripts/559372/create-element-helper.js

tag() calls createElement() and returns a helper.

document.createElement('input')
// ↓
tag('input')

Set attributes by method chaining via helpers.

const input = document.createElement('input')
input.setAttribute('id', 'search')
input.classList.add('search')
// ↓
tag('input').id('search').cssClass('search')