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.”。
扩展截图
下载Urbit Visor扩展crx文件
下载Urbit Visor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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"
]
} | |