WME-JunctionAngle
This extension adds junction angle information to the the Waze map editor.
Что такое WME-JunctionAngle?
WME-JunctionAngle - это расширение Chrome, разработанное Michael Wikberg, и его основная функция - "This extension adds junction angle information to the the Waze map editor.".
Снимки экрана расширения
Скачать файл CRX расширения WME-JunctionAngle
Скачайте файлы расширений WME-JunctionAngle в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Waze Map Editor (WME) addon to help with junction design. If two connected segments are selected, it shows the turn angle, otherwise the the angle between each segment. This is the same thing as the UserScript (https://greasyfork.org/en/scripts/7887-wme-junction-angle-info), but packaged to work with Chromium and Google Chrome. Problems and fixes should be reported on GitHub https://github.com/milkboy/WME-ja/issues Recent changes: 1.13.1 - Update for new WME and URL 1.12.0 - Add option for hiding/displaying the JAI layer on page load 1.11.0 - Bootstrapping fixes. U-turn tweaks. 1.10.0 - Small changes in the Waze instruction logic, support for U-turns and lots of small fixes
Основная информация о расширении
Название | WME-JunctionAngle |
ID | cfcpfikgmfoghjfpfepmklballeagadf |
Официальный URL | https://chromewebstore.google.com/detail/wme-junctionangle/cfcpfikgmfoghjfpfepmklballeagadf |
Описание | This extension adds junction angle information to the the Waze map editor. |
Размер файла | 71.49 KB |
Количество установок | 2,191 |
Текущая Версия | 1.13.1 |
Последнее Обновление | 2017-08-21 |
Дата публикации | 2017-08-21 |
Рейтинг | 4.72/5 Всего 50 оценок |
Разработчик | Michael Wikberg |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/milkboy/WME-ja |
Поддерживаемые языки | en,pl,fi,sv |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "short_name": "WME-JA", "version": "1.13.1", "manifest_version": 2, "default_locale": "en", "description": "__MSG_extDesc__", "icons": { "16": "ja16.png", "32": "ja32.png", "48": "ja48.png", "128": "ja128.png" }, "homepage_url": "https:\/\/github.com\/milkboy\/WME-ja", "content_scripts": [ { "matches": [ "https:\/\/www.waze.com\/*", "https:\/\/beta.waze.com\/*" ], "include_globs": [ "*\/editor*" ], "exclude_globs": [ "*\/user\/*" ], "js": [ "crx_bootstrap.user.js" ] } ], "web_accessible_resources": [ "wme_junctionangle.user.js" ] } |