Reddit Hover Text

Reddit Hover Text

Shows the content of a reddit text post when you hover on it's link.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Hover Text",
  "version": "0.9.1",
  "manifest_version": 2,
  "description": "Shows the content of a reddit text post when you hover on it's link.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "history"
  ],
  "background": {
    "scripts": [
      "jquery.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.reddit.com/*",
        "https://www.reddit.com/*",
        "http://old.reddit.com/*",
        "https://old.reddit.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "reddit-hover.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "ajax-loader.gif",
    "ajax-loader-night.gif"
  ]
}