PHP Documentation Search

PHP Documentation Search

This add-on searches the official php documentation for a given term. It provides a search field, that can be accessed from the toolbar as well as it adds a search option for selected text to the context menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "manifest_version": 2,
  "name": "PHP Documentation Search",
  "version": "1.3",
  "description": "This add-on searches the official php documentation for a given term. It provides a search field, that can be accessed from the toolbar as well as it adds a search option for selected text to the context menu.",
  "icons": {
    "48": "icons/php-logo2.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": "icons/php-logo2.png",
    "default_title": "PHP Documentation Search",
    "default_popup": "popup/search_bar.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}