Open Github/Bitbucket in editor
Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
Open Github/Bitbucket in editor क्या है?
Open Github/Bitbucket in editor a7madgamal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Open Github/Bitbucket in editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Click on diff line numbers in Github or Bitbucket PRs to open the exact file and line in your favorite editor 🤓 open-source, free and super lightweight! Issues? feature requests? >> https://github.com/a7madgamal/open_github_in_editor 🦊 also available for Firefox https://addons.mozilla.org/en-US/firefox/addon/open-github-in-editor/
एक्सटेंशन की मूल जानकारी
नाम | Open Github/Bitbucket in editor |
ID | epklehdbjbicoeeebecaeeeceflgpmga |
आधिकारिक URL | https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga |
विवरण | Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come! |
फ़ाइल का आकार | 50.72 KB |
स्थापना संख्या | 161 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2022-11-22 |
प्रकाशन तिथि | 2019-12-12 |
डेवलपर | a7madgamal |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/a7madgamal/open_github_in_editor |
सहायता पृष्ठ URL | https://github.com/a7madgamal/open_github_in_editor |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open Github\/Bitbucket in editor", "version": "1.2.1", "description": "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!", "manifest_version": 3, "permissions": [ "storage" ], "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/bitbucket.com\/*", "https:\/\/bitbucket.org\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "32": "icons\/32.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "65.0" } } } |