OpenStreetMap Tags Editor

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

Co je OpenStreetMap Tags Editor?

OpenStreetMap Tags Editor je rozšíření Chrome vyvinuté Ilya Zverev, a jeho hlavní funkcí je „Adds an "edit tags" button to every object on osm.org.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření OpenStreetMap Tags Editor

Stáhněte si soubory rozšíření OpenStreetMap Tags Editor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název OpenStreetMap Tags Editor OpenStreetMap Tags Editor
ID gcbcbndjajojkneicbfdaegcghgbdjnj
Oficiální URL https://chromewebstore.google.com/detail/openstreetmap-tags-editor/gcbcbndjajojkneicbfdaegcghgbdjnj
Popis Adds an "edit tags" button to every object on osm.org.
Velikost souboru 64.4 KB
Počet instalací 119
Aktuální Verze 1.2
Poslední Aktualizace 2024-02-25
Datum Vydání 2022-07-20
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Ilya Zverev
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Zverik/osmtags-editor
URL Stránky Nápovědy https://github.com/Zverik/osmtags-editor/issues
Podporované Jazyky 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"
    ]
}