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
官方網址 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"
    ]
}