FindOnPage Bookmarklets

FindOnPage Bookmarklets

Add dynamically page highlighting buttons according to a previous Google search. Meant to become a replacement for the famous SearchWP on Firefox Quantum.

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "FindOnPage Bookmarklets",
  "version": "1.2a",
  "description": "Adds bookmarklets to highlight search keywords on any page.",
  "icons": {
    "144": "icon.svg"
  },
  "background": {
    "scripts": [
      "fsbackground.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery331.js",
        "jquery.mark.js",
        "fscontent.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "applications": {
    "gecko": {
      "id": "searchwpbookmarklets@verbis.net"
    }
  },
  "permissions": [
    "bookmarks",
    "storage"
  ]
}