🌐 Dual Blog Auto Submitter
Automatically submit both your blogs to free directory sites
📝 UrduShayri Blog
Website URL
https://urdushayrihere.blogspot.com
Email
solangikhalil92@gmail.com
Title
Urdu Shayri - Best Urdu Poetry Collection
Category
Poetry/Literature/Blog
🛠️ WebToolz Blog
Website URL
https://webtoooolz.blogspot.com
Email
solangikhalil92@gmail.com
Title
WebToolz - Free Online Tools & Resources
Category
Technology/Tools/Blog
🎮 Control Panel
💻 Auto-Fill Scripts
// UrduShayri Auto-Fill Script
// Paste this in browser console (F12)
function autoFillUrduShayri() {
const data = {
url: 'https://urdushayrihere.blogspot.com',
email: 'solangikhalil92@gmail.com',
title: 'Urdu Shayri - Best Urdu Poetry Collection',
desc: 'Daily updated collection of beautiful Urdu poetry, shayari, ghazals and romantic verses with meanings.'
};
document.querySelectorAll('input,textarea').forEach(f => {
let n = (f.name + ' ' + f.placeholder).toLowerCase();
if(n.includes('url')||n.includes('website')) f.value = data.url;
if(n.includes('email')||n.includes('mail')) f.value = data.email;
if(n.includes('title')||n.includes('name')) f.value = data.title;
if(n.includes('description')||n.includes('desc')) f.value = data.desc;
});
alert('✅ UrduShayri auto-filled! Check form and click SUBMIT');
}
autoFillUrduShayri();
// WebToolz Auto-Fill Script
// Paste this in browser console (F12)
function autoFillWebToolz() {
const data = {
url: 'https://webtoooolz.blogspot.com',
email: 'solangikhalil92@gmail.com',
title: 'WebToolz - Free Online Tools & Resources',
desc: 'Collection of free online tools, web utilities, converters, and helpful resources for developers and users.'
};
document.querySelectorAll('input,textarea').forEach(f => {
let n = (f.name + ' ' + f.placeholder).toLowerCase();
if(n.includes('url')||n.includes('website')) f.value = data.url;
if(n.includes('email')||n.includes('mail')) f.value = data.email;
if(n.includes('title')||n.includes('name')) f.value = data.title;
if(n.includes('description')||n.includes('desc')) f.value = data.desc;
});
alert('✅ WebToolz auto-filled! Check form and click SUBMIT');
}
autoFillWebToolz();
// Universal Auto-Fill Script
// Paste this in browser console (F12)
function autoFillUniversal() {
const blogs = [
{
url: 'https://urdushayrihere.blogspot.com',
title: 'Urdu Shayri - Best Urdu Poetry Collection',
desc: 'Daily updated Urdu poetry, shayari, ghazals collection'
},
{
url: 'https://webtoooolz.blogspot.com',
title: 'WebToolz - Free Online Tools & Resources',
desc: 'Free online tools, web utilities and resources'
}
];
// Let user choose which blog to submit
const choice = prompt('Which blog to submit?\n1: UrduShayri\n2: WebToolz\n3: Both (alternating)');
const data = choice === '2' ? blogs[1] : blogs[0];
document.querySelectorAll('input,textarea').forEach(f => {
let n = (f.name + ' ' + f.placeholder).toLowerCase();
if(n.includes('url')||n.includes('website')) f.value = data.url;
if(n.includes('email')||n.includes('mail')) f.value = 'solangikhalil92@gmail.com';
if(n.includes('title')||n.includes('name')) f.value = data.title;
if(n.includes('description')||n.includes('desc')) f.value = data.desc;
});
alert('✅ Blog auto-filled! Check form and click SUBMIT');
}
autoFillUniversal();
🌐 Submission Sites (50 Total)
0 completed (both blogs)📖 How to Use
- Click "Extract Submission Sites" to load directory sites
- Choose which blog to submit (UrduShayri or WebToolz)
- Click the corresponding submit button
- When a site opens, press F12 → Console
- Paste the appropriate auto-fill script and press Enter
- Solve CAPTCHA if needed and click Submit
- Close the tab and the next site will open automatically
- Track progress for both blogs separately
Comments
Post a Comment