Open In IntelliJ

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

Vad är Open In IntelliJ?

Open In IntelliJ är en Chrome-tillägg utvecklad av Bernhard Caspar, och dess huvudfunktion är "Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.)".

Tilläggsskärmbilder

screenshot

Ladda ner Open In IntelliJ-förlängningens CRX-fil

Ladda ner Open In IntelliJ-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.)                    

Grundläggande Information om Tillägg

Namn Open In IntelliJ Open In IntelliJ
ID gpmmlokoechmmeboecialijibkjajlaj
Officiell webbadress https://chromewebstore.google.com/detail/open-in-intellij/gpmmlokoechmmeboecialijibkjajlaj
Beskrivning Open files from Chrome Devtools in IntelliJ IDEs (Webstorm, PHPStorm etc.)
Filstorlek 36.47 KB
Antal Installationer 4,779
Aktuell Version 0.8.1
Senast Uppdaterad 2018-11-20
Publiceringsdatum 2018-11-20
Betyg 4.44/5 Totalt 9 Betyg
Utvecklare Bernhard Caspar
Betalningssätt free
Tilläggswebbplats https://github.com/bernhardc/open-in-intellij
Stödda Språk 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"
    }
}