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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    ]
}