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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}