manifest.json 464 B

12345678910111213141516171819202122
  1. {
  2. "manifest_version": 2,
  3. "name": "Open-Source Alternative Redirector",
  4. "version": "9.0.0",
  5. "content_scripts": [
  6. {
  7. "matches": [ "<all_urls>" ],
  8. "js": [ "/index.js" ]
  9. }
  10. ],
  11. "browser_action": {
  12. "browser_style": true,
  13. "default_icon": {
  14. "38": "/icon.png"
  15. },
  16. "default_title": "Open-Source Alternative Redirector",
  17. "default_popup": "/index.html"
  18. }
  19. }