manifest.json 567 B

123456789101112131415161718192021
  1. {
  2. "manifest_version": 3,
  3. "name": "Grammar Glow",
  4. "version": "0.1.0",
  5. "description": "Send page text to a FastAPI service for grammar-aware highlighting and inject the result back into the page.",
  6. "permissions": ["activeTab", "scripting", "storage"],
  7. "host_permissions": ["http://117.50.195.224:12012/*"],
  8. "background": {
  9. "service_worker": "background.js"
  10. },
  11. "action": {
  12. "default_title": "Grammar Glow"
  13. },
  14. "content_scripts": [
  15. {
  16. "matches": ["<all_urls>"],
  17. "js": ["content.js"],
  18. "run_at": "document_idle"
  19. }
  20. ]
  21. }