minus.js

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

minus.js란 무엇입니까?

minus.js은(는) ryanpcmcquen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A whole host of JS shortcuts, for the DOM hacker."입니다.

minus.js 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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