35 lines
		
	
	
		
			823 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			823 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|     "manifest_version": 2,
 | |
| 
 | |
|     "name": "gPass",
 | |
|     "short_name": "gPass",
 | |
|     "version": "0.8",
 | |
|     "description": "gPass : global password manager",
 | |
|     "icons" : {"16":"icons/gpass_icon_16.png", "32":"icons/gpass_icon_32.png", "64":"icons/gpass_icon_64.png", "128":"icons/gpass_icon_128.png"},
 | |
|     "author" : "Grégory Soutadé",
 | |
|     "homepage_url" : "http://indefero.soutade.fr/p/gpass",
 | |
|     
 | |
|     "content_scripts": [
 | |
| 	{
 | |
| 	    "matches": ["https://*/*", "http://*/*"],
 | |
| 	    "js": ["lib/parseuri.js", "lib/misc.js", "compat.js", "lib/main.js"],
 | |
| 	    "run_at" : "document_idle",
 | |
| 	    "all_frames" : true
 | |
| 	}
 | |
|     ],
 | |
| 
 | |
|     "background": {
 | |
| 	"persistent": false,
 | |
| 	"scripts": ["background.js"]
 | |
|     },
 | |
| 
 | |
|     "options_page": "options.html",
 | |
| 
 | |
|     "permissions": [
 | |
| 	"https://*/",
 | |
| 	"http://*/",
 | |
| 	"notifications",
 | |
| 	"storage"
 | |
|     ]
 | |
| }
 |