Momento for Hacker News

Momento for Hacker News

Add tags to HN users so you can remember them in the future

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Momento for Hacker News",
  "short_name": "HN User Tagger",
  "description": "Add tags to HN users so you can remember them in the future",
  "version": "1.1",
  "minimum_chrome_version": "56.0.2924",
  "background": {
    "scripts": [
      "./event-page.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "./icon16.png",
    "48": "./icon48.png",
    "128": "./icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/*"
      ],
      "css": [
        "./content-script.css"
      ],
      "js": [
        "./content-script.js"
      ]
    }
  ]
}