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文件
下載Routora - Google Maps Route Optimization擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 擴展基本資訊
| 名稱 | |
| ID | jdddfnfohdeaklgkpglonlofgapjgfbp |
| 官方網址 | 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\/*"
]
} | |