Github Annotator

Show user details and repository info in a tooltip.

Τι είναι το Github Annotator;

Το Github Annotator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mesut Tasci, και η κύρια λειτουργία του είναι "Show user details and repository info in a tooltip.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Github Annotator

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

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

                        Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages.

Extension source code:
https://github.com/mesuutt/github-annotator                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Github Annotator Github Annotator
ID epmbkocbfiejffcjahjhncadlipmdime
Επίσημο URL https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime
Περιγραφή Show user details and repository info in a tooltip.
Μέγεθος Αρχείου 81.68 KB
Αριθμός Εγκαταστάσεων 214
Τρέχουσα Έκδοση 2.1
Τελευταία Ενημέρωση 2017-10-22
Ημερομηνία Δημοσίευσης 2017-10-22
Αξιολόγηση 4.50/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Mesut Tasci
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://github.com/mesuutt/github-annotator
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/mesuutt/github-annotator/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Annotator",
    "description": "Show user details and repository info in a tooltip.",
    "manifest_version": 2,
    "version": "2.1",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery-1.9.1.min.js",
                "contentscript.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "https:\/\/github.com\/"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    }
}