manifest.json 652 B

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