Gamefinder
Finds what games youtube video pages feature.
什么是Gamefinder?
Gamefinder是由Brancu Alexandru开发的Chrome扩展程序,该扩展的主要功能是“Finds what games youtube video pages feature.”。
扩展截图
下载Gamefinder扩展crx文件
下载Gamefinder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allows you to view what game is featured in any video on most pages of youtube before clicking on it. 扩展基本信息
| 名称 | |
| ID | jlgipnmimogpomfpobemgdddbfnkkdbp |
| 官方URL | https://chromewebstore.google.com/detail/gamefinder/jlgipnmimogpomfpobemgdddbfnkkdbp |
| 简介 | Finds what games youtube video pages feature. |
| 文件大小 | 13.36 KB |
| 安装次数 | 29 |
| 当前版本 | 1.0 |
| 更新时间 | 2023-01-18 |
| 上架时间 | 2022-09-16 |
| 开发者 | Brancu Alexandru |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gamefinder",
"description": "Finds what games youtube video pages feature.",
"version": "1.0",
"manifest_version": 3,
"icons": {
"128": "favicon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"scriptLoader.js"
]
}
],
"permissions": [],
"host_permissions": [
"https:\/\/*.youtube.com\/*"
],
"web_accessible_resources": [
{
"resources": [
"subscriptions.js",
"recommended.js",
"home.js"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
]
} | |