Injector

Runs your custom code snippets on any website

什么是Injector?

Injector是由https://neocotic.dev开发的Chrome扩展程序,该扩展的主要功能是“Runs your custom code snippets on any website”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Injector扩展crx文件

下载Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Provides quick and easy access to lots of information about the current page and environment;

Allows you to create custom code snippets to be injected into any website.

Injector comes with it's own editor for writing your snippets, which can be scripts or styles in the following languages:

- JavaScript
- CoffeeScript
- CSS
- LESS

# Changes
A complete archive of changes included in previous version can be found below;
@ tmpl.at/1cLlepo

# Help Desk
If you have any problems with this extension or would like to give us your feedback you can do so here;
@ tmpl.at/1cLlapT

# Permissions
For those of you that worry about these things I have constructed a breakdown of what permissions are used by this extension (even those you aren't warned about) and why;
@ tmpl.at/1cLl7KA

# Open Source
This extension is open source and can be found on GitHub below;
@ tmpl.at/1cLkYXv                    

扩展基本信息

名称 Injector Injector
ID bfdonckegflhbiamlmidciapolfccmmb
官方URL https://chromewebstore.google.com/detail/injector/bfdonckegflhbiamlmidciapolfccmmb
简介 Runs your custom code snippets on any website
文件大小 1.53 MB
安装次数 4,671
当前版本 1.0.4
更新时间 2019-03-09
上架时间 2019-03-09
评分 4.63/5 共24次评分
开发者 https://neocotic.dev
付费类型 free
扩展官网 https://github.com/neocotic/injector-chrome
帮助页面URL https://injector.uservoice.com
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "homepage_url": "http:\/\/neocotic.com\/injector",
    "default_locale": "en",
    "manifest_version": 2,
    "minimum_chrome_version": "22",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com https:\/\/*.uservoice.com; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "js\/install.js"
            ],
            "run_at": "document_end",
            "matches": [
                "http:\/\/*.neocotic.com\/*"
            ]
        },
        {
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_idle",
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_icon": "img\/icon-128.png",
        "default_title": "__MSG_name__"
    },
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "vendor\/js\/async.min.js",
            "vendor\/js\/jquery.min.js",
            "vendor\/js\/underscore-min.js",
            "vendor\/js\/backbone-min.js",
            "vendor\/js\/backbone.chromestorage.min.js",
            "vendor\/js\/coffee-script.min.js",
            "vendor\/js\/less.min.js",
            "vendor\/js\/purl.min.js",
            "js\/utils.js",
            "js\/injector.js",
            "js\/models.js",
            "js\/events.js"
        ],
        "persistent": false
    },
    "version": "1.0.4",
    "icons": {
        "16": "img\/icon-128.png",
        "48": "img\/icon-128.png",
        "128": "img\/icon-128.png"
    }
}