Yahoo Toolbar and New Tab

Yahoo Toolbar and New Tab

This Add-on gives you a simplified version of Yahoo Toolbar along with Flickr images on every new tab. It also provides quick access to your top sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Yahoo",
      "keyword": "Yahoo",
      "search_url": "https://search.yahoo.com/search?p={searchTerms}&fr=yset_ff_hp_cnewtab&type=default",
      "favicon_url": "https://www.yahoo.com/favicon.ico",
      "suggest_url": "https://search.yahoo.com/sugg/ie?output=fxjson&command={searchTerms}&nResults=10",
      "is_default": true
    }
  },
  "manifest_version": 2,
  "name": "Yahoo Toolbar and New Tab",
  "description": "This Add-on gives you quick access to your recently visited sites and Yahoo top sites. It also brings a fresh look to every new tab page, powered by Yahoo.",
  "applications": {
    "gecko": {
      "id": "{635abd67-4fe9-1b23-4f01-e679fa7484c1}",
      "strict_min_version": "55.0"
    }
  },
  "version": "5.1.5",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "permissions": [
    "topSites",
    "bookmarks",
    "*://*.yahoo.com/",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "cookies"
  ],
  "icons": {
    "64": "icons/Y_NT64.png"
  },
  "browser_action": {
    "default_icon": {
      "64": "icons/Y_NT64.png"
    },
    "browser_style": false
  },
  "background": {
    "scripts": [
      "TrackerEncoder.js",
      "Tracker.js",
      "Constants.js",
      "PhotoManager.js",
      "TrendingNow.js",
      "BrowserGap.js",
      "main.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.yahoo.com/*"
      ],
      "js": [
        "notifyPresence.js"
      ],
      "all_frames": true
    }
  ]
}