FindAlways™

FindAlways™

Find words or phrases on every page, link, or new tab. Ctrl+Shft+F toggles on/off. Persistent finds, just like you would expect.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FindAlways™",
  "version": "1.0",
  "manifest_version": 2,
  "description": "Find words or phrases on every page, link, or new tab. Ctrl+Shft+F toggles on/off. Persistent finds, just like you would expect.",
  "short_name": "FindAlways™ a LeanStartPad™ Brand.",
  "icons": {
    "16": "app/icons/icon16.png",
    "48": "app/icons/icon48.png",
    "128": "app/icons/icon128.png"
  },
  "background": {
    "scripts": [
      "app/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "app/js/lib/jquery-3.2.1.min.js",
        "app/js/search.js",
        "app/js/pagechange.js"
      ],
      "css": [
        "app/css/search.css"
      ]
    }
  ],
  "offline_enabled": true,
  "web_accessible_resources": [
    "*"
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "commands": {
    "finder-search-text": {
      "description": "Search",
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "MacCtrl+Shift+F"
      }
    }
  }
}