FastFind

FastFind

FastFind helps you track multiple pieces of text!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FastFind",
  "short_name": "FF",
  "description": "FastFind helps you track multiple pieces of text!",
  "version": "0.9.8.6",
  "author": "Samuel Nunes",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_title": "FastFind Settings"
  },
  "content_scripts": [
    {
      "persistent": false,
      "js": [
        "content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "settings/index.html",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "web_accessible_resources": [
    "fast-find.js",
    "assets/repeat.png",
    "assets/pin.png"
  ],
  "minimum_chrome_version": "70",
  "manifest_version": 2
}