manifest.json 450 B

12345678910111213141516171819202122
  1. {
  2. "manifest_version": 2,
  3. "name": "Firefox extension example",
  4. "description": " extension written in PureScript",
  5. "version": "0.1.0",
  6. "browser_specific_settings": {
  7. "gecko": {
  8. "id": "new_ext@mozilla.org"
  9. }
  10. },
  11. "content_scripts": [
  12. {
  13. "matches": ["*://*/*"],
  14. "js": ["content.js"]
  15. }
  16. ],
  17. "background": {
  18. "scripts": ["background.js"],
  19. "persistent": true
  20. },
  21. "permissions": ["tabs", "storage"]
  22. }