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 |
| 公式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 |
| Eメール | [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\/*"
]
} | |