Urbit Visor

Transforms your web browser into a first class Urbit client.

Urbit Visor란 무엇입니까?

Urbit Visor은(는) dcSpark에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transforms your web browser into a first class Urbit client."입니다.

확장 프로그램 스크린샷

screenshot

Urbit Visor 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Urbit Visor is an extension which transforms your web browser into a first class Urbit client. Its goal is to allow existing web tech to seamlessly integrate together with the novel functionality of Urbit.                    

확장 프로그램 기본 정보

이름 Urbit Visor Urbit Visor
ID oadimaacghcacmfipakhadejgalcaepg
공식 URL https://chromewebstore.google.com/detail/urbit-visor/oadimaacghcacmfipakhadejgalcaepg
설명 Transforms your web browser into a first class Urbit client.
파일 크기 2.19 MB
설치 횟수 327
현재 버전 0.4.2
최근 업데이트 2022-05-03
출시 날짜 2021-10-26
평점 5.00/5 총 6 개의 평점
개발자 dcSpark
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://urbitvisor.com
개인정보 보호 정책 페이지 URL https://dcspark.io/legal/privacy
지원되는 언어 en
manifest.json
{
    "name": "Urbit Visor",
    "description": "Transforms your web browser into a first class Urbit client.",
    "manifest_version": 2,
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm5XZIjmISeYdECai228Nz5DKO7nA3MN5FWwsg5kImRjAZcWbNBG4ywJhwo7UjUErljng5wrerJATFhcxlXYfkSGR6gfV3sk4j+twm0PxlQXge8w0e24S55j6lk2vNHA3AwfnI8\/wl3kI1CqWK6YqtSL7lDWw5inVvz3JH9w4fvXPlQpBkU52BDEE6dQQ3npscdh05\/aBmOiHGev+Q1D5NCbh7TJQaXDE30ApS4u6bwr1rQrSXjc2Hcy\/8yiLvAmzLNOG6fAGMUIUdrMweqgmgKxKF1+v4i+fkNy4jZF2rLMZRqKzLrDF7Ov60TYt+hFC+IriOUVzemg7h4QQR+51ZQIDAQAB",
    "version": "0.4.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "popup.html",
        "launcher.html"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+U",
                "mac": "Ctrl+Shift+U",
                "chromeos": "Ctrl+Shift+U",
                "linux": "Ctrl+Shift+U"
            }
        },
        "command-launcher": {
            "suggested_key": {
                "windows": "Ctrl+Comma",
                "mac": "Command+Comma",
                "chromeos": "Ctrl+Comma",
                "linux": "Ctrl+Comma"
            },
            "description": "UV command launcher"
        }
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "*:\/\/*\/_generated_background_page.html"
    ]
}