The Seeker

The Seeker

This guy follows you around man. He's just like...a friend.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "The Seeker",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "This guy follows you around man. He's just like...a friend.",
  "homepage_url": "http://worldisending.com",
  "icons": {
    "16": "icons/seeker_16px.png",
    "48": "icons/seeker_64px.png",
    "128": "icons/seeker_128px.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/background/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/seeker_64px.png",
    "default_title": "The Call Him The Seeker",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/free_walker.gif",
    "images/sprite_cat-soldier.png",
    "images/sprite_sir-nerdington.png"
  ]
}