Youtube Embed
This extension adds an additional button to the youtube player that toggles embedded mode.
What is Youtube Embed?
Youtube Embed is a Chrome extension developed by rosca.valentin2012, and its main feature is "This extension adds an additional button to the youtube player that toggles embedded mode.".
Download Youtube Embed Extension CRX File
Download Youtube Embed extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension adds an additional button to the youtube player that toggles embedded mode.
Extension Basic Information
Name | |
ID | hbeapjkbnlomlkplfchcobioeeockkpd |
Official URL | https://chrome.google.com/webstore/detail/youtube-embed/hbeapjkbnlomlkplfchcobioeeockkpd |
Description | This extension adds an additional button to the youtube player that toggles embedded mode. |
File Size | 44.96 KB |
Installation Count | 151 |
Current Version | 1.1.2 |
Last Updated | 2017-06-26 |
Publish Date | 2017-06-26 |
Rating | 5.00/5 Total 4 Ratings |
Developer | rosca.valentin2012 |
Payment Type | free |
Supported Languages | 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" ] } } |