minus.js

A whole host of JS shortcuts, for the DOM hacker.

minus.jsคืออะไร?

minus.js เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ryanpcmcquen และคุณลักษณะหลักของมันคือ "A whole host of JS shortcuts, for the DOM hacker."

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

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

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

                        `minus` includes a whole host of shortcuts for JavaScript developers:


m.d for document

m.o for Object

m.ap for Array.prototype

m.eq or m.eqs for ELEMENT.querySelector

m.eqa or m.eqsa for ELEMENT.querySelectorAll

m.q or m.qs for document.querySelector

m.qa or m.qsa for document.querySelectorAll

m.ael for addEventListener

m.oc for Object.create

m.ok for Object.keys

m.aspc for Array.prototype.slice.call

m.qp for queryParent (taken from https://github.com/ryanpcmcquen/queryparent)

m.qsi for querySibling (taken from https://github.com/ryanpcmcquen/querysibling)
m.qsi.n is for querying the next sibling.
m.qsi.p is for querying the previous sibling.

Do `m.qs('body');` directly from your browser's console! Save time debugging your JS apps.

If a global object named `m` already exists, `minus.js` will try for `mi` or `min` and then gracefully bow out.

https://github.com/ryanpcmcquen/minus.js                    

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

ชื่อ minus.js minus.js
ID pchfdjinikokceoagjbhilpnoccabcag
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/minusjs/pchfdjinikokceoagjbhilpnoccabcag
คำอธิบาย A whole host of JS shortcuts, for the DOM hacker.
ขนาดไฟล์ 12.4 KB
จำนวนการติดตั้ง 13
เวอร์ชันปัจจุบัน 0.5.0
อัปเดตครั้งล่าสุด 2016-07-21
วันที่เผยแพร่ 2016-07-20
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ryanpcmcquen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ryanpcmcquen/minus.js
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "minus.js",
    "description": "A whole host of JS shortcuts, for the DOM hacker.",
    "version": "0.5.0",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "attachIt.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "minus.js"
    ]
}