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文件

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