-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
48 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,31 @@ | ||
# YouTube Link Embedder | ||
|
||
This is a firefox Extension. | ||
This is a firefox Extension that allows you to view all YouTube videos. | ||
|
||
You can load this extension using Firefox "about:debugging#/runtime/this-firefox" temporary extentension mechanism. | ||
It puts the video into iframe: | ||
|
||
Allows you to view a YouTube video without problems. Just insert into popup link to video, and check results. | ||
``` | ||
iframe.width = '100%'; | ||
iframe.height = '100%'; | ||
iframe.frameBorder = 0; | ||
iframe.referrerPolicy = 'no-referrer-when-downgrade'; | ||
iframe.allowFullscreen = true; | ||
iframe.className = 'youtube_player_frame'; | ||
iframe.style.position = 'absolute'; | ||
iframe.style.top = '0'; | ||
iframe.style.left = '0'; | ||
iframe.style.width = '100%'; | ||
iframe.style.height = '100%'; | ||
iframe.style.border = '0'; | ||
``` | ||
|
||
# Installation | ||
|
||
- Described by https://extensionworkshop.com/documentation/publish/distribute-sideloading/ | ||
- Enter "about:debugging#/runtime/this-firefox" in firefox address bar. Add temporary extentension mechanism | ||
|
||
# HowTo | ||
|
||
- Navigate to any page. Let's say https://www.youtube.com | ||
- click extension, popup should be opened | ||
- provide your desired video, let's say https://www.youtube.com/watch?v=CeA92xqw-QI |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters