Injecta

Inject JavaScript libraries into your current page.

Injecta란 무엇입니까?

Injecta은(는) Ian Macalinao에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject JavaScript libraries into your current page."입니다.

확장 프로그램 스크린샷

screenshot

Injecta 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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