Edge Extension Quick Start Guide
Creating the Package (Simple Method)
-
Open the extension-edge folder in File Explorer
- Select these files and folders:
- ✅
assets/
folder
- ✅
background/
folder
- ✅
content/
folder
- ✅
lib/
folder
- ✅
popup/
folder
- ✅
manifest.json
- ✅
onboarding.html
- DO NOT include:
- ❌
package-edge.js
- ❌
test-edge-setup.js
- ❌
README.md
- ❌
PACKAGING.md
- ❌
DISTRIBUTION_CHECKLIST.md
- ❌
QUICK_START.md
- ❌
BROWSER_API_MIGRATION_STATUS.md
- Create the zip:
- Right-click on the selected files
- Choose “Send to” → “Compressed (zipped) folder”
- Rename to
anchored-edge-extension-v1.16.zip
(use current version from manifest.json)
- Test the package:
- Extract the zip to a temporary folder
- Open Edge and go to
edge://extensions/
- Enable “Developer mode”
- Click “Load unpacked”
- Select the extracted folder
- Test all functionality
Submitting to Edge Add-ons
- Go to Microsoft Partner Center:
- Visit https://partner.microsoft.com/dashboard
- Sign in or create an account
- Upload your package:
- Click “New submission”
- Upload the .zip file
- Fill in the store listing details
- Reuse Chrome materials:
- Copy description from Chrome Web Store
- Use same screenshots and icons
- Same privacy policy and terms
- Submit for review:
- Review all information
- Click “Submit”
- Wait 1-3 business days for approval
Testing in Edge
Load unpacked extension:
- Open Edge
- Go to
edge://extensions/
- Enable “Developer mode” (bottom-left toggle)
- Click “Load unpacked”
- Select the
extension-edge
folder
- Test all features
Test the packaged version:
- Extract your .zip file
- Load the extracted folder as unpacked extension
- Verify everything works identically
- Extension Name: Anchored - URL Notes
- Version: Check
manifest.json
for current version
- Category: Productivity
- Privacy Policy: https://anchored.site/privacy.html
- Support: [your-support-email]
Common Issues
Package too large?
- Edge limit is 100MB
- Current package should be ~2-5MB
- Make sure you didn’t include unnecessary files
Extension won’t load?
- Check manifest.json syntax
- Verify all file paths are correct
- Look for console errors in Edge DevTools
Submission rejected?
- Read the feedback carefully
- Common issues: missing privacy policy, unclear permissions
- Fix and resubmit
Next Steps
After approval:
- ✅ Test installation from Edge Add-ons store
- ✅ Update your website with Edge Add-ons link
- ✅ Announce to users
- ✅ Monitor reviews and ratings
For detailed information, see PACKAGING.md
and DISTRIBUTION_CHECKLIST.md
.