JavaScript Injector
Inject javascript in a given website.
JavaScript Injector란 무엇입니까?
JavaScript Injector은(는) luisnaia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject javascript in a given website."입니다.
확장 프로그램 스크린샷
JavaScript Injector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This chrome extension has the purpose of injecting Java Script into a target URL every time that page loads. You can inject your favourite script to extend the page functionality. Features - Add urls with or without regular expressions - Keep a list of your urls and edit your js code inline - You can turn on/off the js code when you wish - Search trough your URLs
확장 프로그램 기본 정보
이름 | JavaScript Injector |
ID | knmnopfmccchnnfdoiddbihbcboeedll |
공식 URL | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
설명 | Inject javascript in a given website. |
파일 크기 | 397 KB |
설치 횟수 | 5,062 |
현재 버전 | 1.0.4 |
최근 업데이트 | 2014-08-21 |
출시 날짜 | 2014-08-21 |
평점 | 2.91/5 총 33 개의 평점 |
개발자 | luisnaia |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/darkbls/jsinjector |
도움말 페이지 URL | https://github.com/darkbls/jsinjector |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "JavaScript Injector", "short_name": "Js Injector", "description": "Inject javascript in a given website. ", "version": "1.0.4", "browser_action": { "default_icon": "icon72.png", "default_title": "Activate Js Inject rules - Click to add a new rule" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "activeTab", "storage", "webNavigation" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "options_page": "options.html", "background": { "scripts": [ "js\/background.js" ], "persistent": false } } |