Computer Purchase Info

Adds a paragraph about computer purchasing to the page

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Computer Purchase Info
// @namespace    http://yourdomain.example.com/
// @version      1.0
// @description  Adds a paragraph about computer purchasing to the page
// @author       Your Name
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const container = document.createElement('div');
    container.innerHTML = `
        <h1>Making the Right Computer Purchase</h1>
        <p>
            Buying a computer requires careful thought about your needs and budget to ensure you choose the right device.
            Whether it's a laptop for studying, a gaming desktop, or a professional workstation, important features like processor
            power, memory, storage type, and graphics performance should be considered. It's also wise to compare different brands,
            read user reviews, and check for solid warranty and customer service options. With the right balance of performance and
            cost, you can select a computer that meets your requirements without going over budget.
        </p>
    `;

    // Style it a bit (optional)
    container.style.padding = '20px';
    container.style.backgroundColor = '#f0f0f0';
    container.style.fontFamily = 'Arial, sans-serif';

    // Insert into body
    document.body.prepend(container);
})();