manifest.json 604 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "manifest_version": 2,
  3. "name": "Pure Tabs",
  4. "description": "Tree tabs extension written in PureScript",
  5. "version": "0.1.0",
  6. "homepage_url": "https://github.com/Kazy",
  7. "browser_specific_settings": {
  8. "gecko": {
  9. "id": "puretabs@boullier.bzh"
  10. }
  11. },
  12. "background": {
  13. "scripts": [
  14. "background.js"
  15. ],
  16. "persistent": true
  17. },
  18. "sidebar_action": {
  19. "default_title": "Pure Tabs",
  20. "default_panel": "sidebar.html"
  21. },
  22. "permissions": [
  23. "<all_urls>",
  24. "tabs",
  25. "sessions",
  26. "storage",
  27. "unlimitedStorage",
  28. "bookmarks",
  29. "tabHide"
  30. ]
  31. }