Open In IntelliJ
Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.)
什么是Open In IntelliJ?
Open In IntelliJ是由Bernhard Caspar开发的Chrome扩展程序,该扩展的主要功能是“Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.)”。
扩展截图
下载Open In IntelliJ扩展crx文件
下载Open In IntelliJ扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This is a Dev Tools Extension to open resources like Javascript or CSS files directly inside your IntelliJ IDE (IntelliJ IDEA, WebStorm, PHPStorm etc.) For installation instructions, troubleshooting tips and source code go to: https://github.com/bernhardc/open-in-intellij (Note: You might have to go into your WebStorm/PHPStorm Settings ->Build,Execution,Deployment -> Debugger -> Built-In Server and check the box "Allow unsigned requests". Also if the web root directory is different from your project root, you need to set up path mappings. Please refer to the instructions page.)
扩展基本信息
名称 | Open In IntelliJ |
ID | gpmmlokoechmmeboecialijibkjajlaj |
官方URL | https://chromewebstore.google.com/detail/open-in-intellij/gpmmlokoechmmeboecialijibkjajlaj |
简介 | Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.) |
文件大小 | 36.47 KB |
安装次数 | 4,779 |
当前版本 | 0.8.1 |
更新时间 | 2018-11-20 |
上架时间 | 2018-11-20 |
评分 | 4.44/5 共9次评分 |
开发者 | Bernhard Caspar |
付费类型 | free |
扩展官网 | https://github.com/bernhardc/open-in-intellij |
支持的语言 | en |
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" } } |