OpenStreetMap Tags Editor

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

OpenStreetMap Tags Editorคืออะไร?

OpenStreetMap Tags Editor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ilya Zverev และคุณลักษณะหลักของมันคือ "Adds an "edit tags" button to every object on osm.org."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย OpenStreetMap Tags Editor

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}