Run Javascript
Run custom Javascript, each time you visit a website
Run Javascript란 무엇입니까?
Run Javascript은(는) ao.ms에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Run custom Javascript, each time you visit a website"입니다.
확장 프로그램 스크린샷
Run Javascript 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Run custom Javascript, each time you visit a website. This extension is particularly useful to web developers and people who like to tamper with websites they frequent by injecting additional javascript to manipulate the DOM. Add in any javascript you like and it will automatically be executed everytime you visit the website in the future. jQuery 3.3.1 is pre-loaded, so you can use all the $ magic immediately!
확장 프로그램 기본 정보
이름 | Run Javascript |
ID | lmilalhkkdhfieeienjbiicclobibjao |
공식 URL | https://chromewebstore.google.com/detail/run-javascript/lmilalhkkdhfieeienjbiicclobibjao |
설명 | Run custom Javascript, each time you visit a website |
파일 크기 | 2.18 MB |
설치 횟수 | 35,056 |
현재 버전 | 1.11 |
최근 업데이트 | 2023-08-14 |
출시 날짜 | 2020-05-23 |
평점 | 4.28/5 총 40 개의 평점 |
개발자 | ao.ms |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://ataiva.com/run-javascript-chrome-extension-help/?from=store |
도움말 페이지 URL | https://ataiva.com/run-javascript-chrome-extension-help/?from=store |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Run Javascript", "description": "Run custom Javascript, each time you visit a website", "version": "1.11", "permissions": [ "storage", "activeTab" ], "browser_action": { "default_title": "Run Javascript", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "96": "icon-96.png", "128": "icon-128.png", "256": "icon-256.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "lib_jquery_3_3_1.js", "lib_jquery_2_2_4.js", "lib_jquery_1_12_4.js" ], "js": [ "lib_jquery_3_3_1.js", "inject.js" ], "run_at": "document_end" } ], "manifest_version": 2 } |