generated from coulomb/repo-seed
- Local tag is now clickable - checks if document exists on server by ID or filename, and re-links if found - Delete from server now archives the proxy instead of removing it, making it a local-only document that can be re-uploaded - Added first-run pin reminder banner to help users pin the extension - Added issue report modal with context sections (extension info, browser info, document status, recent errors) and copy to clipboard as Markdown - Added clearServerFields and attachServerDocument functions to pdf-queue - Improved local tag styling with hover states and visual feedback Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
37 lines
848 B
JSON
37 lines
848 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "BinectChrome",
|
|
"version": "1.0.0",
|
|
"description": "Send PDFs from cloud applications directly to Binect for physical mail delivery",
|
|
"default_locale": "en",
|
|
"permissions": [
|
|
"downloads",
|
|
"storage",
|
|
"alarms",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"https://api.binect.de/*",
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "BinectChrome - Send PDFs to postal mail",
|
|
"default_icon": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon-16.png",
|
|
"32": "icons/icon-32.png",
|
|
"48": "icons/icon-48.png",
|
|
"128": "icons/icon-128.png"
|
|
}
|
|
}
|