manifest.json 455 B

1234567891011121314151617181920
  1. {
  2. "manifest_version": 2,
  3. "name": "Firefox KOReader",
  4. "version": "1.0",
  5. "description": "Sync articles instantly to your KOReader",
  6. "icons": {
  7. "48": "icons/border-48.png"
  8. },
  9. "permissions": [
  10. "tabs",
  11. "<all_urls>"
  12. ],
  13. "browser_action": {
  14. "default_icon": "icons/koreader.png",
  15. "default_title": "Show on KOReader"
  16. },
  17. "background": {
  18. "scripts": ["background.js"]
  19. }
  20. }