Sample Userscript Greasy Fork Full

Userscript mẫu đầy đủ metadata, hợp lệ tuyệt đối khi đăng Greasy Fork

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Sample Userscript Greasy Fork Full
// @namespace    https://greasyfork.org/users/ahi/sample-userscript-full
// @version      1.0.0
// @description  Userscript mẫu đầy đủ metadata, hợp lệ tuyệt đối khi đăng Greasy Fork
// @author       Ahi
// @match        *://*/*
// @license      MIT
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function () {
    'use strict';

    // Code JavaScript thực thi hợp lệ
    console.log('✅ Userscript Greasy Fork đang chạy');

    // Ví dụ thao tác DOM
    const banner = document.createElement('div');
    banner.textContent = 'Userscript hoạt động';
    banner.style.position = 'fixed';
    banner.style.top = '10px';
    banner.style.right = '10px';
    banner.style.background = '#222';
    banner.style.color = '#fff';
    banner.style.padding = '8px 12px';
    banner.style.borderRadius = '6px';
    banner.style.fontSize = '12px';
    banner.style.zIndex = '99999';

    document.body.appendChild(banner);
})();