manifest.json 501 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "JSInject",
  3. "description": "JSInject",
  4. "version": "0.0.1",
  5. "manifest_version": 2,
  6. "permissions": [
  7. "storage",
  8. "activeTab"
  9. ],
  10. "background": {
  11. "scripts": [
  12. "background.js"
  13. ],
  14. "persistent": true
  15. },
  16. "browser_action": {
  17. "default_title": "Inject!"
  18. },
  19. "content_scripts": [{
  20. "matches": [
  21. "http://*/*",
  22. "https://*/*"
  23. ],
  24. "js": ["inject.js"],
  25. "run_at": "document_start"
  26. }]
  27. }