uLaw Toolbox
uLaw Quick Launch - This chrome extension will guide to an easy launch of the app, help tutorials, manuals and CPDs on Fri @2pm EST
uLaw Toolbox란 무엇입니까?
uLaw Toolbox은(는) https://www.ulaw.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "uLaw Quick Launch - This chrome extension will guide to an easy launch of the app, help tutorials, manuals and CPDs on Fri @2pm EST"입니다.
확장 프로그램 스크린샷
uLaw Toolbox 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
uLaw Toolbox will be very useful to quickly launch your favourite uLaw app and also get help, access manuals, launch tutorials, and most important get access to our Friday 2:00pm EST. CPDs
확장 프로그램 기본 정보
이름 | uLaw Toolbox |
ID | nigpjoecjjkcklfkphnddcjkjmapofho |
공식 URL | https://chromewebstore.google.com/detail/ulaw-toolbox/nigpjoecjjkcklfkphnddcjkjmapofho |
설명 | uLaw Quick Launch - This chrome extension will guide to an easy launch of the app, help tutorials, manuals and CPDs on Fri @2pm EST |
파일 크기 | 107 KB |
설치 횟수 | 173 |
현재 버전 | 1.0.12 |
최근 업데이트 | 2023-08-22 |
출시 날짜 | 2020-10-20 |
개발자 | https://www.ulaw.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.ulaw.io |
도움말 페이지 URL | https://www.youtube.com/user/ulawpractice |
개인정보 보호 정책 페이지 URL | https://www.ulaw.io/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "uLaw Toolbox", "description": "uLaw Quick Launch - This chrome extension will guide to an easy launch of the app, help tutorials, manuals and CPDs on Fri @2pm EST", "version": "1.0.12", "icons": { "128": "128x128uLawAppicon.png" }, "action": { "default_icon": "19x19uLawAppicon.png", "default_popup": "uLawLauncher.html" }, "host_permissions": [ "https:\/\/api.ulaw.io\/" ], "permissions": [ "alarms", "background", "notifications", "storage" ], "background": { "service_worker": "bg.js" }, "content_scripts": [ { "matches": [ "*:\/\/outlook.live.com\/*", "*:\/\/outlook.office.com\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "jquery.js", "outlook.js" ] }, { "matches": [ "*:\/\/mail.google.com\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "jquery.js", "content.js" ] } ] } |