Bing Search Automator

Bing Search Automator

Performs 60 bing searches including an affiliate link

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bing Search Automator",
  "version": "1.9",
  "options_page": "options.html",
  "description": "Performs 60 bing searches including an affiliate link",
  "background": {
    "scripts": [
      "back.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "options.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "16icon.png",
    "128": "128icon.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "16icon.png"
    },
    "default_popup": "popup.html"
  }
}