Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // JAVASCRIPT
- (function(){
- //console.log("1")
- var func = document.getElementsByTagName("ytd-video-primary-info-renderer");
- console.log(func);
- const child = document.createElement('div');
- child.setAttribute("id", "info-panel");
- child.innerHTML = `<h1>Hello World!</h1>`;
- func[0].appendChild(child);
- //console.log("2")
- })();
- // CSS
- #info-text {
- background-color: red;
- position: absolute;
- top: 0;
- left: 0;
- padding: 0 10px;
- }
- #info-text * {
- color: white;
- }
- #info-panel {
- display: block;
- height: 20px;
- position: absolute;
- top: 2px;
- right: 3px;
- z-index: 9;
- color: #666;
- font-size: 11px;
- font-weight: bold;
- line-height: 17px;
- text-decoration: none;
- font-weight: normal;
- -webkit-animation: fadeInOut 14s;
- animation: fadeInOut 14s;
- }
Advertisement
Add Comment
Please, Sign In to add comment