Homer

Homer

We allow renters to use their universal rental application with all landlords on Craigslist.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "version": "0.1.5",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "icons/homer-16.png",
    "128": "icons/homer-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "storage",
    "cookies",
    "http://*.craigslist.ca/",
    "https://*.craigslist.ca/"
  ],
  "content_scripts": [
    {
      "js": [
        "scripts/contentscript.js"
      ],
      "matches": [
        "http://*.craigslist.ca/*/apa/*",
        "https://*.craigslist.ca/*/apa/*",
        "http://*.craigslist.ca/apa/*",
        "https://*.craigslist.ca/apa/*"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/homer-16.png",
      "128": "icons/homer-128.png"
    },
    "default_title": "Homer",
    "default_popup": "index.html"
  }
}