ePlane for Chrome
Search for aircraft parts on ePlane with just one click.
ePlane for Chrome란 무엇입니까?
ePlane for Chrome은(는) https://eplane.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search for aircraft parts on ePlane with just one click."입니다.
확장 프로그램 스크린샷
ePlane for Chrome 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Discover ePlane’s Revolutionary One-Click Search Extension Tool for aircraft sourcing. By using ePlane’s Chrome extension, you get immediate access to inventory and repair capabilities listed on ePlane by vetted sellers directly from your browser. How it works Once you download the extension, you will have the option to search for a single or multiple PNs directly from your browser by clicking on the ePlane logo in the right upper corner of the address bar. Start typing the PN you need and you will be automatically directed to the search results page on ePlane. Yes, it’s that easy!
확장 프로그램 기본 정보
이름 | ePlane for Chrome |
ID | dioadlibodghpjibadbdlgbnhmcolmaj |
공식 URL | https://chromewebstore.google.com/detail/eplane-for-chrome/dioadlibodghpjibadbdlgbnhmcolmaj |
설명 | Search for aircraft parts on ePlane with just one click. |
파일 크기 | 259 KB |
설치 횟수 | 106 |
현재 버전 | 1.92 |
최근 업데이트 | 2021-06-23 |
출시 날짜 | 2018-06-19 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | https://eplane.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.eplane.com |
도움말 페이지 URL | https://www.eplane.com/contactus |
개인정보 보호 정책 페이지 URL | https://www.eplane.com/about/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ePlane for Chrome", "description": "Search for aircraft parts on ePlane with just one click.", "author": "ePlane Inc.", "homepage_url": "https:\/\/www.eplane.com\/", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.eplane.com\/*", "*:\/\/eplane.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "images\/icon16x16.png", "48": "images\/icon48x48.png", "128": "images\/icon128x128.png" }, "version": "1.92", "browser_action": { "default_icon": "images\/icon16x16.png", "default_popup": "popup.html", "default_title": "Click here to search parts." }, "permissions": [ "storage", "cookies", "*:\/\/*.eplane.com\/*", "*:\/\/eplane.com\/*" ] } |