craigstab

craigstab

The new tab page is replaced by a list of craigslist results from searches specified by the user

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "craigstab",
  "description": "The new tab page is replaced by a list of craigslist results from searches specified by the user",
  "version": "1.1.1",
  "icons": {
    "16": "assets/icon.png",
    "48": "assets/icon.png",
    "128": "assets/icon.png"
  },
  "browser_action": {
    "default_icon": "assets/icon.png",
    "default_popup": "views/menu.html"
  },
  "options_page": "views/options.html",
  "chrome_url_overrides": {
    "newtab": "views/new_tab.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "http://*.craigslist.org/",
    "https://*.craigslist.org/"
  ]
}