Hacker News Submit

Hacker News Submit

Submit to Hacker News by clicking on the extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hacker News Submit",
  "version": "1.0",
  "description": "Submit to Hacker News by clicking on the extension",
  "icons": {
    "16": "images/HNS16.png",
    "32": "images/HNS32.png",
    "48": "images/HNS48.png",
    "128": "images/HNS128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "hn_submit.min.js"
      ]
    }
  ]
}