โก Quick Actions
๐ Countries
Active regions: 0
๐ Recent Subscribers
No subscribers yet.
๐จ Recent Campaigns
| Name | Sent | Date |
|---|---|---|
| ๐ Bulk Test | 0 | Feb 03, 2026 |
| ๐ Bulk Test | 0 | Feb 03, 2026 |
| ๐ Bulk Test | 0 | Feb 03, 2026 |
| ๐ Bulk Test | 0 | Feb 03, 2026 |
| ๐ Bulk Test | 0 | Feb 03, 2026 |
๐จ Send Targeted Campaign
๐จ Notification Design Preview
Preview
๐ฏ Audience Segments
๐ All Subscribers
0
Total active subscribers
๐ฑ Mobile Users
--
Mobile & tablet devices
๐ฅ Engaged Users
--
Clicked in last 7 days
Your Custom Segments
๐ฏ No custom segments yet
Create your first segment to target specific audiences
๐ค Automation Rules
Welcome Series
Send a sequence of welcome messages to new subscribers
Abandoned Cart
Recover lost sales with cart abandonment notifications
Browse Abandonment
Re-engage users who viewed products but didn't purchase
Price Drop Alert
Notify users when products they viewed drop in price
Back in Stock
Alert users when out-of-stock items become available
Drip Campaign
Send a series of scheduled messages over time
๐งช A/B Testing
No A/B Tests Running
Create your first A/B test to compare different notification variations and discover what drives the highest engagement.
๐ Notification Templates
๐ Welcome Message
Title: "Welcome! ๐"
Body: "Thanks for subscribing..."
๐ฅ Special Offer
Title: "๐ฅ Special Offer!"
Body: "Get 20% off on your..."
๐ฐ Breaking News
Title: "๐ฐ Breaking News"
Body: "Check out our latest..."
๐ Advanced Analytics
๐ Campaign Performance Over Time
Chart visualization coming soon
๐ Top Countries
๐ฑ Device Breakdown
๐ Browser Breakdown
๐ค Export Subscribers
Export subscribers from Default Site
Total: 0 subscribers
Transfer to Another Website
- Click "Copy to Clipboard" above
- Switch to target website in sidebar
- Go to Import section
- Paste the data
๐ฅ Import Subscribers
๐ Bulk Transfer Between Websites
Step 1: Export from Source
Select source website โ Click Export โ Copy data
Step 2: Import to Target
Select target website โ Paste data โ Click Import
๐ API Keys
API keys are used to authenticate requests to protected endpoints like sending campaigns and viewing metrics.
Generate New API Key
How to Use
Add the X-Api-Key header to your API requests:
-H "Content-Type: application/json" \
-H "X-Api-Key: pk_your_key_here" \
-d '{"title":"Hello","body":"World"}'
Your API Keys
๐ฆ Download Website Package
Get a complete ready-to-use package. Upload to your website root and the popup will automatically show to new visitors!
1. Select Website
2. Your Website Domain (Where you will upload sw.js)
Enter YOUR website domain (e.g., example.com) - This is where sw.js will be uploaded
3. Popup Delay (seconds)
Delay before popup shows after page loads
๐ Package Contents
All files will be customized for: push.minifytool.com
- โ g9push.html - Demo page with auto-popup (rename if needed)
- โ sw.js - Service Worker (place in root)
- โ popup.js - Auto-popup script
- โ HEAD-CODE.txt - Code for your website head
- โ README.txt - Setup instructions
- User visits your website
- After 3 seconds, popup automatically shows
- User clicks "Allow Notifications"
- Browser asks for permission
- Done! User is subscribed โ
โก Quick Integration Guide
Method 1: Add to Existing Website
Add this code to the <head> of every page:
<!-- G9 Push Notifications - Auto Popup -->
<script src="https://push.minifytool.com/auto-subscribe-popup.js"
data-site-id="1"
data-api-base="https://push.minifytool.com"
data-delay="3000"
defer></script>
Method 2: Upload Files (Recommended)
- Download the package
- Extract the ZIP file
- Upload sw.js to your website root
- Upload popup.js to your website
- Add the HEAD code to your pages
- Done! Popup will auto-show
โ ๏ธ Important Notes
- Your Website Domain: Make sure to enter YOUR website domain (e.g., example.com) above, not the push server domain
- HTTPS Required: Push notifications only work on HTTPS websites
- sw.js Location: Service Worker MUST be at
/sw.js(root of your domain) - Browser Support: Works in Chrome, Firefox, Edge, Safari (iOS 16.4+, macOS 13+)
- Popup Frequency: Popup shows once per user (uses cookies), reappears after 7 days if dismissed
๐ป Website Integration Code
Option 1: Custom Popup + Browser Permission (Recommended)
Shows your designed popup first, then browser permission dialog. Higher conversion rates!
<!-- G9 Push Notifications - Auto Popup -->
<script src="https://push.minifytool.com/auto-subscribe-popup.js"
data-site-id="1"
data-api-base="https://push.minifytool.com"
data-delay="3000"
defer></script>
Option 2: Direct Browser Permission Only
Skips custom popup, shows browser permission dialog directly. Use for direct approach.
<!-- G9 Push Notifications - Direct Permission -->
<script src="https://push.minifytool.com/auto-subscribe-popup.js"
data-site-id="1"
data-api-base="https://push.minifytool.com"
data-delay="3000"
data-direct-permission="true"
defer></script>
Method 3: Manual SDK (Advanced)
For custom implementation with your own UI:
<script src="https://push.minifytool.com/sdk/push-sdk.js"
data-site-id="1"
data-base-url="https://push.minifytool.com"
data-sw-path="/sw.js"
defer></script>
Setup Instructions
Quick Setup Steps:
- Copy Option 1 or 2 code above
- Paste it in your website's
<head>section (every page) - Download sw.js and upload to your website root
- Visit your website - permission will auto-appear after 3 seconds!
- sw.js MUST be at
https://push.minifytool.com/sw.js(root) - HTTPS is required - won't work on HTTP
- The browser permission dialog ("example.com wants to send notifications") cannot be removed - it is a browser security requirement
- Option 1 shows your custom design first, then browser dialog
- Option 2 shows only the browser dialog (no custom popup)