Youtube Embed
This extension adds an additional button to the youtube player that toggles embedded mode.
什么是Youtube Embed?
Youtube Embed是由rosca.valentin2012开发的Chrome扩展程序,该扩展的主要功能是“This extension adds an additional button to the youtube player that toggles embedded mode.”。
下载Youtube Embed扩展crx文件
下载Youtube Embed扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds an additional button to the youtube player that toggles embedded mode. 扩展基本信息
| 名称 | |
| ID | hbeapjkbnlomlkplfchcobioeeockkpd |
| 官方URL | https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd |
| 简介 | This extension adds an additional button to the youtube player that toggles embedded mode. |
| 文件大小 | 44.96 KB |
| 安装次数 | 151 |
| 当前版本 | 1.1.2 |
| 更新时间 | 2017-06-26 |
| 上架时间 | 2017-06-26 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | rosca.valentin2012 |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"version": "1.1.2",
"name": "Youtube Embed",
"author": "Valentin Rosca",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"https:\/\/www.youtube.com\/embed\/*",
"https:\/\/www.youtube.com\/watch*"
],
"js": [
"jquery.min.js",
"youtube_embed.js"
]
}
],
"permissions": [
"storage"
],
"background": {
"scripts": [
"background.js"
]
}
} | |