manifest.json 585 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "UAS管理助手",
  3. "version": "0.1",
  4. "description": "优软管理系统的Chrome浏览器扩展程序,允许直接调用管理系统接口操作",
  5. "icons": {
  6. "16": "images/16/icon.png",
  7. "48": "images/48/icon.png"
  8. },
  9. "permissions": [
  10. "http://*.ubtob.com/",
  11. "notifications"
  12. ],
  13. "browser_action": {
  14. "default_icon": {
  15. "19": "images/16/icon.png"
  16. },
  17. "default_title": "UAS管理助手",
  18. "default_popup": "popup.html"
  19. },
  20. "background": {
  21. "scripts": [
  22. "background.js"
  23. ]
  24. },
  25. "web_accessible_resources": [
  26. "images/*"
  27. ],
  28. "manifest_version": 2
  29. }