meshed
Chrome extension for Glimesh
什么是meshed?
meshed是由Orangopus开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension for Glimesh”。
扩展截图
下载meshed扩展crx文件
下载meshed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Meshed gives you a completely new UI overhaul for Glimesh.tv's website. The overhaul is a visual UI upgrade for Glimesh. 扩展基本信息
| 名称 | |
| ID | hkjokliffmoapjnpnpldlbegjgkldmin |
| 官方URL | https://chromewebstore.google.com/detail/meshed/hkjokliffmoapjnpnpldlbegjgkldmin |
| 简介 | Chrome extension for Glimesh |
| 文件大小 | 78.31 KB |
| 安装次数 | 36 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2021-03-15 |
| 上架时间 | 2021-03-15 |
| 评分 | 4.67/5 共3次评分 |
| 开发者 | Orangopus |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "meshed",
"description": "Chrome extension for Glimesh",
"version": "0.0.1",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/glimesh.tv\/*"
],
"js": [
"jquery.js",
"app.js"
],
"css": [
"style.css"
]
}
],
"web_accessible_resources": [
"index.html",
"style.css",
"app.js",
"quicksand.ttf"
],
"background": {
"scripts": [
"jquery.js"
],
"persistent": false
},
"permissions": [
"http:\/\/fonts.googleapis.com\/",
"https:\/\/fonts.googleapis.com\/"
],
"options_page": "options.html",
"browser_action": {
"default_popup": "popup.html"
},
"content_security_policy": "script-src 'self' https:\/\/example.com; object-src 'self'"
} | |