manifest.json 700 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "manifest_version": 2,
  3. "name": "Browsh",
  4. "version": "BROWSH_VERSION",
  5. "description": "Renders the browser as realtime, interactive, TTY-compatible text",
  6. "icons": {
  7. "48": "assets/icons/browsh-48.png",
  8. "96": "assets/icons/browsh-96.png"
  9. },
  10. "background": {
  11. "scripts": ["background.js"]
  12. },
  13. "content_scripts": [
  14. {
  15. "matches": ["*://*/*"],
  16. "js": ["content.js"],
  17. "css": ["assets/styles.css"],
  18. "run_at": "document_start"
  19. }
  20. ],
  21. "web_accessible_resources": [
  22. "assets/BlockCharMono.ttf",
  23. "assets/BlankMono.ttf"
  24. ],
  25. "permissions": [
  26. "<all_urls>",
  27. "webRequest",
  28. "webRequestBlocking",
  29. "tabs",
  30. "sessions"
  31. ]
  32. }