ScottTheWozify
Modify YouTube thumbnails to include Scott The Woz
什么是ScottTheWozify?
ScottTheWozify是由kawuchuu开发的Chrome扩展程序,该扩展的主要功能是“Modify YouTube thumbnails to include Scott The Woz”。
扩展截图
下载ScottTheWozify扩展crx文件
下载ScottTheWozify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Is your browser experience boring? Do you need to resist playing Donkey Kong: Barrel Blast?
Fear no more.
This extension adds the guy who owns Sonic Jam Scott The Woz to every YouTube thumbnail. 扩展基本信息
| 名称 | |
| ID | acifigdfnfnafjkkapcghalnemfodmah |
| 官方URL | https://chromewebstore.google.com/detail/scottthewozify/acifigdfnfnafjkkapcghalnemfodmah |
| 简介 | Modify YouTube thumbnails to include Scott The Woz |
| 文件大小 | 13.02 MB |
| 安装次数 | 2,000 |
| 当前版本 | 1.5 |
| 更新时间 | 2023-08-25 |
| 上架时间 | 2023-08-24 |
| 评分 | 5.00/5 共22次评分 |
| 开发者 | kawuchuu |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/kawuchuu/ScottTheWozify-Youtube |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ScottTheWozify",
"version": "1.5",
"action": {
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png"
},
"default_popup": "options\/options.html",
"default_title": "ScottTheWozify Options"
},
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"64": "icons\/icon-64.png",
"96": "icons\/icon-96.png"
},
"description": "Modify YouTube thumbnails to include Scott The Woz",
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"scottthewozify.js"
],
"run_at": "document_idle"
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"images\/*.png",
"images\/*.json"
],
"matches": [
"https:\/\/www.youtube.com\/*"
]
}
]
} | |