Youtube Embed
This extension adds an additional button to the youtube player that toggles embedded mode.
Youtube Embed là gì?
Youtube Embed là một tiện ích mở rộng Chrome được phát triển bởi rosca.valentin2012, và tính năng chính của nó là "This extension adds an additional button to the youtube player that toggles embedded mode.".
Tải xuống tệp CRX của tiện ích mở rộng Youtube Embed
Tải xuống các tệp mở rộng Youtube Embed dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension adds an additional button to the youtube player that toggles embedded mode.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | hbeapjkbnlomlkplfchcobioeeockkpd |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd |
Mô tả | This extension adds an additional button to the youtube player that toggles embedded mode. |
Kích Thước Tệp | 44.96 KB |
Số Lần Cài Đặt | 151 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2017-06-26 |
Ngày Phát Hành | 2017-06-26 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | rosca.valentin2012 |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |