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 |
| 官方網址 | 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\/*"
]
}
]
} | |