jQuery Injector

Inject jQuery into all frames on any page.

jQuery Injector란 무엇입니까?

jQuery Injector은(는) attilathedud에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject jQuery into all frames on any page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        jQuery Injector allows you to inject jQuery into every frame on a page so that you can use jQuery in the dev console. 

Features:
- Set the jQuery URL to inject any version you want.
- Specify websites and page patterns to automatically inject into.
- Entry in context-menu to make injection even easier.

v1.1.2 Changelog
- Bumped the default jQuery version to 3.5.0

v1.1.1 Changelog
- Bumped the default jQuery version to 3.3.1.

v1.1.0 Changelog
- Added the option to delete previous jQuery versions when injecting.
- Added an indicator for when jQuery is already present on the page.
- Added link to Options screen in the popup options panel.
- Bumped the default jQuery version to 3.2.1.
- Fixed a bug where the head tag would be placed after the body tag on pages with no original head tag.
- Fixed some styling/UI issues.

v1.0.1 Changelog
- Added a context-menu entry for embedded pdfs.
- Fixed a bug that made it impossible to inject into pages with no head tag.
- Fixed font-rendering in settings for newer Chrome versions.

Code is available at: https://github.com/attilathedud/jQueryInjector                    

확장 프로그램 기본 정보

이름 jQuery Injector jQuery Injector
ID ekkjohcjbjcjjifokpingdbdlfekjcgi
공식 URL https://chromewebstore.google.com/detail/jquery-injector/ekkjohcjbjcjjifokpingdbdlfekjcgi
설명 Inject jQuery into all frames on any page.
파일 크기 57.7 KB
설치 횟수 11,969
현재 버전 1.1.2
최근 업데이트 2020-05-03
출시 날짜 2020-05-01
평점 4.36/5 총 25 개의 평점
개발자 attilathedud
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/attilathedud/jQueryInjector
도움말 페이지 URL https://github.com/attilathedud/jQueryInjector
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "jQuery Injector",
    "short_name": "jQueryInjector",
    "version": "1.1.2",
    "description": "Inject jQuery into all frames on any page.",
    "browser_action": {
        "name": "jQuery Injector",
        "default_popup": "pages\/popup_settings.html"
    },
    "icons": {
        "16": "imgs\/logo16.png",
        "48": "imgs\/logo48.png",
        "128": "imgs\/logo128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "options_page": "pages\/settings.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/injected.js"
            ],
            "all_frames": true
        }
    ]
}