39 lines
		
	
	
		
			696 B
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			696 B
		
	
	
	
		
			JSON
		
	
	
	
{
 | 
						|
  "manifest_version": 3,
 | 
						|
  "name": "Composer Bot",
 | 
						|
  "version": "1.0",
 | 
						|
  "description": "Composer Bot",
 | 
						|
 | 
						|
  "action": {
 | 
						|
    "default_icon": {
 | 
						|
      "16": "icons/16.png",
 | 
						|
      "32": "icons/32.png",
 | 
						|
      "128": "icons/128.png"
 | 
						|
    }
 | 
						|
  },
 | 
						|
 | 
						|
  "permissions": ["storage", "tabs", "alarms"],
 | 
						|
 | 
						|
  "host_permissions": ["https://teams.live.com/*"],
 | 
						|
 | 
						|
  "content_scripts": [
 | 
						|
    {
 | 
						|
      "matches": ["https://teams.live.com/*"],
 | 
						|
      "js": ["content.js"],
 | 
						|
      "run_at": "document_idle",
 | 
						|
      "type": "module"
 | 
						|
    }
 | 
						|
  ],
 | 
						|
 | 
						|
  "background": {
 | 
						|
    "service_worker": "background.js",
 | 
						|
    "type": "module"
 | 
						|
  },
 | 
						|
 | 
						|
  "icons": {
 | 
						|
    "16": "icons/16.png",
 | 
						|
    "32": "icons/32.png",
 | 
						|
    "128": "icons/128.png"
 | 
						|
  }
 | 
						|
}
 |