Skip to content

Commit

Permalink
Fix manifest to match https URLs. Update manifest to version 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
russelldavis committed Mar 29, 2013
1 parent 5b8ef90 commit 1be3fe0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions manifest.json
@@ -1,18 +1,20 @@
{ "name": "Hacker News Hotkeys"
{ "manifest_version": 2

, "version": "0.1"
, "name": "Hacker News Hotkeys"

, "version": "0.2"

, "description": "Gmail style hotkeys for Hacker News. Want Vim or Emacs style?
Pay me or bother me :) — dtrejo@cs.brown.ēđū"

, "browser_action": { "default_icon": "images/hnkeys128.png" }

, "background_page": "background.html"
, "background": { "page": "background.html" }

, "permissions": [ "tabs" ]

, "browser_action": { "default_icon": "images/hnkeys128.png"
, "popup": "popup.html"
, "default_popup": "popup.html"
}

, "icons": { "16": "images/hnkeys16.png"
Expand All @@ -21,7 +23,7 @@
, "128": "images/hnkeys128.png"
}

, "content_scripts": [{ "matches": ["http://news.ycombinator.com/*"]
, "content_scripts": [{ "matches": ["*://news.ycombinator.com/*"]
, "css": ["hnkeys.css"]
, "js": ["lib/jquery-1.4.2.min.js", "lib/jquery.hotkeys.js", "hnkeys.js"]
}]
Expand Down

0 comments on commit 1be3fe0

Please sign in to comment.