manifest.json 638 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "ImgURL",
  3. "description" : "Base Level Extension",
  4. "version": "1.0",
  5. "manifest_version": 2,
  6. "permissions": ["storage", "declarativeContent"],
  7. "browser_action": {
  8. "default_popup": "index.html",
  9. "default_icon": "images/16.png"
  10. },
  11. "commands": {
  12. "_execute_browser_action": {
  13. "suggested_key": {
  14. "default": "Ctrl+Shift+U",
  15. "mac": "MacCtrl+Shift+U"
  16. },
  17. "description": "Opens index.html"
  18. }
  19. },
  20. "icons": {
  21. "16": "images/16.png",
  22. "32": "images/32.png",
  23. "48": "images/48.png",
  24. "128": "images/128.png"
  25. }
  26. }