manifest.json 783 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "manifest_version": 2,
  3. "name": "Firefox KOReader",
  4. "version": "1.0",
  5. "description": "Sync articles instantly to your KOReader",
  6. "icons": {
  7. "19": "icons/koreader-19.png",
  8. "38": "icons/koreader-38.png",
  9. "600": "icons/koreader.png"
  10. },
  11. "permissions": [
  12. "tabs",
  13. "storage",
  14. "notifications",
  15. "<all_urls>"
  16. ],
  17. "browser_action": {
  18. "default_icon": {
  19. "19": "icons/koreader-19.png",
  20. "38": "icons/koreader-38.png",
  21. "600": "icons/koreader.png"
  22. },
  23. "default_title": "Show on KOReader"
  24. },
  25. "options_ui": {
  26. "page": "options.html",
  27. "browser_style": true
  28. },
  29. "background": {
  30. "scripts": ["background.js"]
  31. }
  32. }