OpenStreetMap Tags Editor

Adds an "edit tags" button to every object on osm.org.

What is OpenStreetMap Tags Editor?

OpenStreetMap Tags Editor is a Chrome extension developed by Ilya Zverev, and its main feature is "Adds an "edit tags" button to every object on osm.org.".

Extension Screenshots

screenshot

Download OpenStreetMap Tags Editor Extension CRX File

Download OpenStreetMap Tags Editor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name OpenStreetMap Tags Editor OpenStreetMap Tags Editor
ID gcbcbndjajojkneicbfdaegcghgbdjnj
Official URL https://chromewebstore.google.com/detail/openstreetmap-tags-editor/gcbcbndjajojkneicbfdaegcghgbdjnj
Description Adds an "edit tags" button to every object on osm.org.
File Size 64.4 KB
Installation Count 119
Current Version 1.2
Last Updated 2024-02-25
Publish Date 2022-07-20
Rating 5.00/5 Total 2 Ratings
Developer Ilya Zverev
Email [email protected]
Payment Type free
Extension Website https://github.com/Zverik/osmtags-editor
Help Page URL https://github.com/Zverik/osmtags-editor/issues
Supported Languages 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"
    ]
}