Find Selector

Find Selector

Javascript selector to quickly find elements on the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.2",
  "manifest_version": 2,
  "default_locale": "en",
  "short_name": "find-selector",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "permissions": [
    "contextMenus",
    "clipboardWrite"
  ],
  "homepage_url": "https://www.adspower.net",
  "offline_enabled": true,
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_title": "__MSG_ext_name__"
  },
  "background": {
    "scripts": [
      "libs/background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "popup/style.css"
      ],
      "matches": [
        "*://*/*"
      ],
      "js": [
        "libs/content.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "commands": {
    "get_selector": {
      "suggested_key": {
        "default": "Ctrl+Shift+S",
        "mac": "Command+E"
      },
      "description": "-"
    },
    "find_selector": {
      "suggested_key": {
        "default": "Ctrl+Shift+E",
        "mac": "Command+Shift+E"
      },
      "description": "-"
    },
    "find_selector_esc": {
      "suggested_key": {
        "default": "Ctrl+Shift+Z",
        "mac": "Command+Shift+Z"
      },
      "description": "-"
    },
    "find_selector_hide": {
      "suggested_key": {
        "default": "Alt+C",
        "mac": "MacCtrl+C"
      },
      "description": "-"
    }
  }
}