Routora - Google Maps Route Optimization
Rearranges your Google Maps route to guarantee the fastest path
Routora - Google Maps Route Optimization란 무엇입니까?
Routora - Google Maps Route Optimization은(는) https://routora.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Rearranges your Google Maps route to guarantee the fastest path"입니다.
확장 프로그램 스크린샷
Routora - Google Maps Route Optimization 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
We take your multiple stop Google Maps route and move around the address order to help you navigate your trip in the shortest time possible - Save time⏱ - Save gas money⛽️ - Reduce your carbon footprint🌳 Who is this for? Useful for frequent travelers, delivery drivers, small businesses, real estate agents, hikers, cyclists, or when you're just running errands🏃🏻 3 Simple Steps 1️⃣ Create a route on Google Maps 2️⃣ Click on Routora extension 3️⃣ View/share optimized route www.routora.com
확장 프로그램 기본 정보
이름 | Routora - Google Maps Route Optimization |
ID | jdddfnfohdeaklgkpglonlofgapjgfbp |
공식 URL | https://chromewebstore.google.com/detail/routora-google-maps-route/jdddfnfohdeaklgkpglonlofgapjgfbp |
설명 | Rearranges your Google Maps route to guarantee the fastest path |
파일 크기 | 22.1 KB |
설치 횟수 | 20,000 |
현재 버전 | 1.93 |
최근 업데이트 | 2023-12-09 |
출시 날짜 | 2022-03-16 |
평점 | 3.67/5 총 36 개의 평점 |
개발자 | https://routora.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | http://www.routora.com/ |
도움말 페이지 URL | http://www.routora.com/extension-instructions |
개인정보 보호 정책 페이지 URL | https://puddle-tangelo-0ae.notion.site/Routify-Privacy-Policy-1da27a769d25495ea2d747d6c13e8373 |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Routora - Google Maps Route Optimization", "description": "Rearranges your Google Maps route to guarantee the fastest path", "version": "1.93", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/maps\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/r16.png", "32": "\/images\/r32.png", "48": "\/images\/r48.png", "128": "\/images\/r128.png" } }, "icons": { "16": "\/images\/r16.png", "32": "\/images\/r32.png", "48": "\/images\/r48.png", "128": "\/images\/r128.png" }, "permissions": [ "activeTab", "identity", "identity.email" ], "host_permissions": [ "https:\/\/routify-extension-server.herokuapp.com\/*" ] } |