Пользовательские скрипты для браузера
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// ==UserScript==
|
|
|
|
// @name Привет Мирокод!
|
|
|
|
// @namespace http://mirocod.ru/
|
|
|
|
// @version 0.1
|
|
|
|
// @description Простейший скрипт, демонстрирующий простейший функционал
|
|
|
|
// @author AlexeiBv+mirocod@narod.ru
|
|
|
|
// @match https://*/*
|
|
|
|
// @icon https://icons.duckduckgo.com/ip2/mirocod.ru.ico
|
|
|
|
// @grant none
|
|
|
|
// ==/UserScript==
|
|
|
|
|
|
|
|
// Общественное достояние, 2023, Алексей Безбородов (Alexei Bezborodov) <AlexeiBv+mirocod_hello@narod.ru>
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
var logo = document.createElement("div");
|
|
|
|
logo.innerHTML = '<div style="margin: 0pt auto; width: 800px; text-align: center;"><h1 style="margin: 15px;">Привет Мирокод!</h1></div>';
|
|
|
|
|
|
|
|
document.body.insertBefore(logo, document.body.firstChild);
|
|
|
|
|
|
|
|
})();
|