Search On

Search On

This is a very Simple extension to search the selected text on Popular platforms like Youtube, Quora, Facebook, Twitter & many more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Search On",
  "description": "This is a very Simple extension to search the selected text on Popular platforms like Youtube, Quora, Facebook, Twitter & many more.",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icons/large.png",
    "default_title": "Post to Google Buzz"
  },
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "icons/bitty.png",
    "48": "icons/small.png",
    "128": "icons/large.png"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/",
    "contextMenus",
    "history",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "scripts/getSelection.js"
      ]
    }
  ]
}