Autobahn

Autobahn

Save time on Hacker News. Feedback? @autobahnapp and @vla

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "models/options.js",
      "controllers/app.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "views/hackernews.css"
      ],
      "js": [
        "controllers/server.js",
        "lib/jquery-1.7.2.min.js",
        "controllers/hackernews.js"
      ],
      "matches": [
        "http://news.ycombinator.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "Save time on Hacker News. Feedback? @autobahnapp and @vla",
  "homepage_url": "http://vlad.github.com/autobahn",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2,
  "name": "Autobahn",
  "options_page": "views/options.html",
  "permissions": [],
  "version": "0.1"
}