Injecta

Inject JavaScript libraries into your current page.

Injectaとは何ですか?

InjectaはIan Macalinaoによって開発されたChromeの拡張機能で、その主な機能は「Inject JavaScript libraries into your current page.」です。

拡張機能のスクリーンショット

screenshot

Injecta拡張機能のCRXファイルをダウンロード

Injecta拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Inject JavaScript libraries into any webpage with the click of a button.

Have you ever wanted to make a request on a page through the Chrome Developer console? Maybe you wanted to scrape a table using jQuery. Maybe you wish you had access to Lodash/Underscore's powerful comprehensions. Maybe you wanted the date processing capabilities of Moment or the functional elegance of Ramda.

With Injecta, you can now do this without having to copy/paste scripts into the console. Injecta allows you to inject pre-defined JavaScript libraries directly into webpages to give you full control of your webpages.

Source: https://github.com/simplyianm/injecta                    

拡張機能の基本情報

名前 Injecta Injecta
ID gbndgddgajcmkogjonkgbcempddcbmca
公式URL https://chrome.google.com/webstore/detail/injecta/gbndgddgajcmkogjonkgbcempddcbmca
説明 Inject JavaScript libraries into your current page.
ファイルサイズ 91.68 KB
インストール数 140
現在のバージョン 0.0.1
最終更新日 2015-10-13
公開日 2015-10-13
評価 5.00/5 合計 4 レビュー
開発者 Ian Macalinao
支払い方法 free
拡張機能のウェブサイト https://ian.pw
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Injecta",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Inject JavaScript libraries into your current page.",
    "homepage_url": "https:\/\/ian.pw",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon19.png",
            "38": "assets\/icon38.png"
        },
        "default_title": "Injecta",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}