Generator Prompt SEO Interaktif (dengan Tulis Ulang)



Generator Prompt SEO Interaktif

Generator Prompt SEO







Tersalin!




Tersalin!




Tersalin!







Tersalin!

Cara Menggunakan Generator Prompt

Tutorial Prompt Generator

Tools ini dirancang untuk mempercepat pembuatan perintah (prompt) yang detail dan terstruktur untuk AI. Dengan mengisi beberapa kolom, Kamu bisa menghasilkan prompt kompleks yang siap digunakan.

1. Membuat Artikel Baru (Tab Artikel)

Gunakan tab ini untuk membuat prompt artikel baru dari awal berdasarkan sebuah judul.

  1. Pilih tab Artikel.
  2. Ketik judul lengkap yang ingin Kamu jadikan artikel di kolom Judul Artikel.
  3. (Opsional) Masukkan Jumlah Kata yang diinginkan. Jika dikosongkan, defaultnya adalah 500 kata.
  4. (Opsional) Isi Anchor Text dan URL Link untuk tautan internal.
  5. Klik tombol Buat. Prompt lengkap akan muncul di kotak bawah.
  6. Klik Copy untuk menyalin prompt, lalu tempelkan ke platform AI.

2. Membuat Judul (Tab Judul)

Gunakan tab ini jika Kamu hanya butuh bantuan untuk membuat judul yang menarik dan SEO-friendly.

  1. Pilih tab Judul.
  2. Ketik ide utama atau kata kunci di kolom Ide Pokok atau Judul Referensi.
  3. Klik Buat, lalu klik Copy untuk menyalin promptnya.

3. Membuat Meta Deskripsi (Tab Meta)

Gunakan tab ini untuk membuat prompt khusus meta deskripsi yang singkat dan padat.

  1. Pilih tab Meta.
  2. Ketik judul artikel yang sudah final di kolom Judul Artikel.
  3. Klik Buat, lalu klik Copy.

4. Menulis Ulang Artikel (Tab Tulis Ulang)

Ini adalah fitur paling lengkap. Gunakan untuk mengubah artikel, teks, atau bahkan transkrip video menjadi sebuah artikel baru yang unik.

  1. Pilih tab Tulis Ulang.
  2. Tempelkan seluruh teks asli ke dalam kolom Tempel Teks/Artikel Asli.
  3. (Opsional) Tentukan Jumlah Kata Baru yang diinginkan. Jika dikosongkan, defaultnya adalah 500 kata.
  4. (Opsional) Tentukan Anchor Text Baru dan URL Link Baru untuk tautan di akhir artikel.
  5. Klik tombol Buat.
  6. Prompt yang sangat komprehensif akan dibuat. Klik Copy dan gunakan di platform AI.

{Akhir Kata}

`. Di bawahnya, sertakan internal link: `

[ANCHOR_TEXT]

`.

--- ### TUGAS ANDA: Lakukan penulisan ulang total berdasarkan teks sumber di bawah ini dan sajikan hasilnya dalam format:

**JUDUL BARU:** [Judul baru Anda di sini]

**META DESKRIPSI BARU:** [Meta deskripsi baru Anda di sini]

**ISI ARTIKEL BARU (HTML):** [Konten artikel baru dalam format HTML di sini]

Setelah artikel selesai dibuat, ajukan pertanyaan berikut dalam format list bernomor: 1. Mau buat gambar visualisasinya atau generate gambarnya langsung ukuran 16:9? 2. Atau promptnya saja ukuran 16:9? 3. Atau berikan embed gambar width 100% posisi center diatas heading pertama source https://tse1.mm.bing.net/th?q= sesuai judul heading?

--- ### TEKS SUMBER UNTUK DITULIS ULANG: [GANTI_INI]`;

// --- LOGIC --- document.addEventListener('DOMContentLoaded', function() { const tabs = document.querySelectorAll('.tab-btn-minimal'); const tabContents = document.querySelectorAll('.tab-content-minimal');

// Tab switching logic tabs.forEach(tab => { tab.addEventListener('click', () => { tabs.forEach(item => { item.classList.remove('active'); }); tab.classList.add('active');

const target = tab.id.replace('-btn', ''); tabContents.forEach(content => { content.classList.remove('active'); if (content.id === target) { content.classList.add('active'); } }); }); });

// --- Generate Functions --- document.getElementById('generate-artikel').addEventListener('click', () => { const userInput = document.getElementById('input-artikel').value.trim(); const wordCount = document.getElementById('input-wordcount-artikel').value.trim() || '500'; const outputArea = document.getElementById('output-artikel'); if (userInput) { let finalPrompt = templateArtikel .replace('[GANTI_INI]', userInput) .replace('[JUMLAH_KATA]', wordCount); outputArea.value = finalPrompt; } else { outputArea.value = 'Silakan masukkan judul artikel terlebih dahulu.'; } });

document.getElementById('generate-judul').addEventListener('click', () => { const userInput = document.getElementById('input-judul').value.trim(); const outputArea = document.getElementById('output-judul'); if (userInput) { outputArea.value = templateJudul.replace('[GANTI_INI]', userInput); } else { outputArea.value = 'Silakan masukkan ide pokok atau judul referensi terlebih dahulu.'; } });

document.getElementById('generate-meta').addEventListener('click', () => { const userInput = document.getElementById('input-meta').value.trim(); const outputArea = document.getElementById('output-meta'); if (userInput) { outputArea.value = templateMeta.replace('[GANTI_INI]', userInput); } else { outputArea.value = 'Silakan masukkan judul artikel terlebih dahulu.'; } });

document.getElementById('generate-rewrite').addEventListener('click', () => { const userInput = document.getElementById('input-rewrite').value.trim(); const wordCount = document.getElementById('input-wordcount-rewrite').value.trim() || '500'; const anchorText = document.getElementById('input-anchor-rewrite').value.trim() || 'Sitemap'; const urlLink = document.getElementById('input-url-rewrite').value.trim() || 'https://www.pointru.com/p/sitemap.html'; const outputArea = document.getElementById('output-rewrite'); if (userInput) { let finalPrompt = templateRewrite .replace('[GANTI_INI]', userInput) .replace('[JUMLAH_KATA]', wordCount) .replace(/[URL_LINK]/g, urlLink) .replace(/[ANCHOR_TEXT]/g, anchorText); outputArea.value = finalPrompt; } else { outputArea.value = 'Silakan tempelkan teks/artikel asli terlebih dahulu.'; } });

// --- Clear Functions --- document.getElementById('clear-artikel').addEventListener('click', () => { document.getElementById('input-artikel').value = ''; document.getElementById('input-wordcount-artikel').value = ''; document.getElementById('input-anchor-artikel').value = ''; document.getElementById('input-url-artikel').value = ''; document.getElementById('output-artikel').value = ''; });

document.getElementById('clear-judul').addEventListener('click', () => { document.getElementById('input-judul').value = ''; document.getElementById('output-judul').value = ''; });

document.getElementById('clear-meta').addEventListener('click', () => { document.getElementById('input-meta').value = ''; document.getElementById('output-meta').value = ''; });

document.getElementById('clear-rewrite').addEventListener('click', () => { document.getElementById('input-rewrite').value = ''; document.getElementById('input-wordcount-rewrite').value = ''; document.getElementById('input-anchor-rewrite').value = ''; document.getElementById('input-url-rewrite').value = ''; document.getElementById('output-rewrite').value = ''; }); });

// Copy to clipboard function function copyToClipboard(elementId, notifId) { const textarea = document.getElementById(elementId); textarea.select(); textarea.setSelectionRange(0, 99999); // For mobile devices try { document.execCommand('copy'); showNotification(notifId); } catch (err) { console.error('Gagal menyalin:', err); } window.getSelection().removeAllRanges(); }

// Show notification function function showNotification(notifId) { const notif = document.getElementById(notifId); notif.style.opacity = '1'; setTimeout(() => { notif.style.opacity = '0'; }, 2000); }

Leave a Reply

Your email address will not be published.