OpenStreetMap Tags Editor
Adds an "edit tags" button to every object on osm.org.
什么是OpenStreetMap Tags Editor?
OpenStreetMap Tags Editor是由Ilya Zverev开发的Chrome扩展程序,该扩展的主要功能是“Adds an "edit tags" button to every object on osm.org.”。
扩展截图
下载OpenStreetMap Tags Editor扩展crx文件
下载OpenStreetMap Tags Editor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a WebExtension that adds an "Edit Tags" button to all node, way, and relation pages on the osm.org website. The button opens a text area for editing raw tags (in form key=value) with a "Save" button to upload changes.
扩展基本信息
名称 | OpenStreetMap Tags Editor |
ID | gcbcbndjajojkneicbfdaegcghgbdjnj |
官方URL | https://chromewebstore.google.com/detail/openstreetmap-tags-editor/gcbcbndjajojkneicbfdaegcghgbdjnj |
简介 | Adds an "edit tags" button to every object on osm.org. |
文件大小 | 64.4 KB |
安装次数 | 119 |
当前版本 | 1.2 |
更新时间 | 2024-02-25 |
上架时间 | 2022-07-20 |
评分 | 5.00/5 共2次评分 |
开发者 | Ilya Zverev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Zverik/osmtags-editor |
帮助页面URL | https://github.com/Zverik/osmtags-editor/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "OpenStreetMap Tags Editor", "version": "1.2", "description": "Adds an \"edit tags\" button to every object on osm.org.", "icons": { "48": "osmtags-48.png", "96": "osmtags-96.png", "128": "osmtags-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.openstreetmap.org\/*" ], "js": [ "osmorg-editor.js", "osm-auth.iife.min.js" ] } ], "background": { "service_worker": "sidebar-listener.js" }, "web_accessible_resources": [ { "resources": [ "land.html", "land.js" ], "matches": [ "https:\/\/www.openstreetmap.org\/*" ] } ], "permissions": [ "storage", "webNavigation" ] } |