Chromium Open IDE
Link remote source.chromium.org code path to your local chromium src.
Chromium Open IDE क्या है?
Chromium Open IDE Fangzhen Song द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Link remote source.chromium.org code path to your local chromium src."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chromium Open IDE एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
# Chromium Open IDE (COI) `COI` gives you a context menu for opening files in your editor (`VSCode`) on [Chromium Code Search](https://source.chromium.org), [Chromium Code Review](https://chromium-review.googlesource.com) , [Google Git](https://chromium.googlesource.com) and [webdiff-for-coi](https://pypi.org/project/webdiff-for-coi). ## Installation Install this [Chrome Extension](https://chrome.google.com/webstore/detail/chromium-open-ide/oodolphplfmnljcohclgdikkoljjambi)/[MSEdge Extension](https://microsoftedge.microsoft.com/addons/detail/chromium-open-ide/ggfoollpnfolfaejalpiihpobcpbegkl) and related [VSCode Extension](https://marketplace.visualstudio.com/items?itemName=FangzhenSong.chromium-source-opener). ## Usage - For [Chromium Code Search](https://source.chromium.org): \ right-click on line number and select `Open My Editor`, it will open the file in your editor at the selected line. - For [Chromium Code Review](https://chromium-review.googlesource.com): \ right-click on code block and select `Open My Editor`, it will open the file in your editor at the selected line. - For [Google Git](https://chromium.googlesource.com): - click on the line number (optional). - choose and right-click on any code block. - select `Open My Editor`. It will open the file in your editor (at the selected line). - For [webdiff-for-coi](https://pypi.org/project/webdiff-for-coi): \ right-click on code block and select `Open My Editor`, it will open the file in your editor. *Tips: Before using, we should check that have started listening from `VScode`.* **Enjoy!**
एक्सटेंशन की मूल जानकारी
नाम | Chromium Open IDE |
ID | oodolphplfmnljcohclgdikkoljjambi |
आधिकारिक URL | https://chromewebstore.google.com/detail/chromium-open-ide/oodolphplfmnljcohclgdikkoljjambi |
विवरण | Link remote source.chromium.org code path to your local chromium src. |
फ़ाइल का आकार | 1.32 MB |
स्थापना संख्या | 125 |
वर्तमान संस्करण | 1.2.3 |
अंतिम अपडेट | 2021-10-22 |
प्रकाशन तिथि | 2021-09-26 |
डेवलपर | Fangzhen Song |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/song-fangzhen/chromium-open-ide#chromium-open-ide-coi |
सहायता पृष्ठ URL | https://github.com/song-fangzhen/chromium-open-ide/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chromium Open IDE", "description": "Link remote source.chromium.org code path to your local chromium src.", "version": "1.2.3", "permissions": [ "contextMenus", "tabs" ], "action": { "default_icon": "images\/COI-Icon.png", "default_title": "COI" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/127.0.0.1:8989\/*", "https:\/\/source.chromium.org\/*", "https:\/\/chromium-review.googlesource.com\/*" ], "icons": { "16": "images\/COI-Icon.png", "32": "images\/COI-Icon.png", "48": "images\/COI-Icon.png", "128": "images\/COI-Icon.png" } } |