- Add wildcard host permissions for RPC calls - Surface HTTPS-Only hint in Options test flow - Update Troubleshooting docs for HTTPS-Only and host perms
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			852 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			852 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "manifest_version": 2,
 | 
						|
  "name": "Archive.org Link Grabber",
 | 
						|
  "version": "0.1.0",
 | 
						|
  "description": "Filter and export archive.org /download links; copy or send to aria2 RPC.",
 | 
						|
  "browser_action": {
 | 
						|
    "default_title": "Archive.org Link Grabber",
 | 
						|
    "default_popup": "src/popup/index.html"
 | 
						|
  },
 | 
						|
  "options_ui": {
 | 
						|
    "page": "src/options/index.html",
 | 
						|
    "open_in_tab": true
 | 
						|
  },
 | 
						|
  "permissions": [
 | 
						|
    "storage",
 | 
						|
    "clipboardWrite",
 | 
						|
    "activeTab",
 | 
						|
    "contextMenus",
 | 
						|
    "https://archive.org/*",
 | 
						|
    "http://localhost:6800/*",
 | 
						|
    "https://localhost:6800/*",
 | 
						|
    "http://*/*",
 | 
						|
    "https://*/*"
 | 
						|
  ],
 | 
						|
  "background": {
 | 
						|
    "scripts": [
 | 
						|
      "src/lib/aria2-bg.js",
 | 
						|
      "src/background/index.js"
 | 
						|
    ]
 | 
						|
  },
 | 
						|
  "content_scripts": [
 | 
						|
    {
 | 
						|
      "matches": ["https://archive.org/download/*"],
 | 
						|
      "js": ["src/content/collect.js"]
 | 
						|
    }
 | 
						|
  ]
 | 
						|
}
 |