PreFlight Unique CSS and XPath Generator

PreFlight Unique CSS and XPath Generator

PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PreFlight Unique CSS and XPath Generator",
  "version": "1.0.5",
  "description": "PreFlight let's anyone to generate unique CSS and XPath generators easily without opening the inspection tool with iframe support.",
  "homepage_url": "http://preflighthq.com",
  "manifest_version": 2,
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_title": "PreFlight Selector Generator"
  },
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/preflight-recorder-iframe-styles.css"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "images/preflight-logo.svg",
    "images/Preflight-icon-gradient.svg",
    "images/preflight-wordmark.svg",
    "images/spinner.svg",
    "images/check.svg",
    "images/target.svg",
    "images/bullseye.svg",
    "images/flag.svg",
    "app/appFrame.html",
    "css/preflight-recorder.css",
    "css/preflight-recorder-iframe-styles.css"
  ]
}