manifest.json 344 B

123456789101112131415
  1. {
  2. "manifest_version": 2,
  3. "name": "HN Comment Fixer",
  4. "description": "Replaces Hacker News comments with 'Very Interesting!'",
  5. "version": "1.0",
  6. "icons": { "128": "icon_128.png",
  7. "64": "icon_64.png" },
  8. "content_scripts": [
  9. {
  10. "matches": ["https://news.ycombinator.com/*"],
  11. "js": ["hnfix.js"]
  12. }
  13. ]
  14. }