Open In IntelliJ

Open In IntelliJ

Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open In IntelliJ",
  "short_name": "Open In IntelliJ",
  "description": "Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.)",
  "version": "0.8.1",
  "devtools_page": "openinide.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "48": "logo-48px.png",
    "128": "logo-128px.png"
  }
}