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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον a7madgamal, και η κύρια λειτουργία του είναι "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Open Github/Bitbucket in editor

Λήψη αρχείων επέκτασης Open Github/Bitbucket in editor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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"
        }
    }
}