Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
Inject Javascript -- Synced & Open Source란 무엇입니까?
Inject Javascript -- Synced & Open Source은(는) quentin.bramas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Inject javascript in web pages, synced across your devices"입니다.
확장 프로그램 스크린샷
Inject Javascript -- Synced & Open Source 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to add custom js to any web page. Due to the critical risk of this kind of extension, I made this extension open source, and very small so that is it easy to check that it does not do anything bad. https://github.com/Bramas/Synced-Injected-Scripts Everything you type is automatically saved and synced. You can use call the function `injectLibs([lib1url, lib2url, ...], calllback)` to inject libraries before your script
확장 프로그램 기본 정보
이름 | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
공식 URL | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
설명 | Inject javascript in web pages, synced across your devices |
파일 크기 | 538 KB |
설치 횟수 | 356 |
현재 버전 | 1.1 |
최근 업데이트 | 2020-03-28 |
출시 날짜 | 2020-03-26 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | quentin.bramas |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Bramas/Synced-Injected-Scripts |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Javascript -- Synced & Open Source", "version": "1.1", "description": "Inject javascript in web pages, synced across your devices", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" } }, "icons": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" }, "manifest_version": 2 } |