Adds options 'Search with Bing', Yahoo and DuckDuckGo in the context menu, to search for any selected text
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"background": {
"scripts": [
"background.js"
]
},
"description": "Adds options 'Search with Bing', Yahoo and DuckDuckGo in the context menu, to search for any selected text",
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"64": "images/64.png",
"128": "images/128.png"
},
"manifest_version": 2,
"name": "Find By Text",
"permissions": [
"contextMenus",
"tabs",
"<all_urls>",
"webRequest",
"webRequestBlocking",
"storage"
],
"version": "1.4",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}