Open Github/Bitbucket in editor

Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!

Qu'est-ce que Open Github/Bitbucket in editor ?

Open Github/Bitbucket in editor est une extension Chrome développée par a7madgamal, et sa fonction principale est "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Open Github/Bitbucket in editor

Téléchargez les fichiers d'extension Open Github/Bitbucket in editor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Open Github/Bitbucket in editor Open Github/Bitbucket in editor
ID epklehdbjbicoeeebecaeeeceflgpmga
URL Officiel https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga
Description Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
Taille du Fichier 50.72 KB
Nombre d'Installations 161
Version Actuelle 1.2.1
Dernière Mise à Jour 2022-11-22
Date de Publication 2019-12-12
Développeur a7madgamal
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/a7madgamal/open_github_in_editor
URL de la Page d'Aide https://github.com/a7madgamal/open_github_in_editor
Langues Prises en Charge 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"
        }
    }
}