InjectCode

Store and inject code to browser pages made super easy.

InjectCode란 무엇입니까?

InjectCode은(는) https://jaak.kytt.ee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Store and inject code to browser pages made super easy."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        For developers who have to deal with sites to which they don't have code side access to. Easily store and inject JavaScript snippets into pages, enhance usability or manipulate data in several open tabs at once.

Features:
* create, edit, delete, sort, name and enable/disable your scripts
* syntax highlighter and autosave
* scripts are stored locally and persist throughout sessions
* run a specific script or all that are marked as active
* change scope to run scripts on the current or on all open tabs
* scripts are injected into the pages after document.ready
* includes jQuery
* added global function openTab(url) to open a new tab within your script (avoid recursion)
* added global XhrMonitor object for working with ajax pages

1.1.0:
* added global InjectCode object which is exported into the content pages (allowing to use attached methods in the Chrome console)

1.1.1:
* removed unused storage permission request

Source available at https://github.com/jaakkytt/InjectCode.                    

확장 프로그램 기본 정보

이름 InjectCode InjectCode
ID flhghpihapijancfhnicbnjifdodohpi
공식 URL https://chromewebstore.google.com/detail/injectcode/flhghpihapijancfhnicbnjifdodohpi
설명 Store and inject code to browser pages made super easy.
파일 크기 215 KB
설치 횟수 2,341
현재 버전 1.1.1
최근 업데이트 2021-04-26
출시 날짜 2015-04-01
평점 4.65/5 총 26 개의 평점
개발자 https://jaak.kytt.ee
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jaak.kytt.ee/blog/injectcode
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "InjectCode",
    "description": "Store and inject code to browser pages made super easy.",
    "version": "1.1.1",
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/inject32.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "img\/inject16.png",
        "48": "img\/inject48.png",
        "128": "img\/inject128.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery-1.10.2.min.js",
                "js\/help_content_script.js",
                "js\/run_content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}