Github Hoverscope

Hoverzoom files and folders in Github

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

Το Github Hoverscope είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://jamescui.com, και η κύρια λειτουργία του είναι "Hoverzoom files and folders in Github".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension enables users to conveniently browse through files and directories on Github by providing hover zoom capability over file/folder links.

* hover mouse over file or folder links to see its content in tooltip without having to click and redirect the page
* contents within the tooltip is clickable and scrollable
* tooltip closes automatically on mouse-out from inside the tooltip
* tooltip can be closed manually by clicking the close button on the top right of the tooltip                    

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

Όνομα Github Hoverscope Github Hoverscope
ID ejdmejhddfennlaoejkdkkfcjpphkgbh
Επίσημο URL https://chromewebstore.google.com/detail/github-hoverscope/ejdmejhddfennlaoejkdkkfcjpphkgbh
Περιγραφή Hoverzoom files and folders in Github
Μέγεθος Αρχείου 1.9 MB
Αριθμός Εγκαταστάσεων 99
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2013-09-25
Ημερομηνία Δημοσίευσης 2013-09-25
Αξιολόγηση 4.33/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://jamescui.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Hoverscope",
    "version": "0.0.1",
    "description": "Hoverzoom files and folders in Github",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon16.png",
            "38": "images\/icon48.png"
        },
        "default_title": "Github Hoverscope"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "css": [
                "\/lib\/jquery-ui\/css\/ui-lightness\/jquery-ui-1.10.3.custom.min.css",
                "\/lib\/css\/jquery.qtip.min.css",
                "\/lib\/css\/tooltip.css"
            ],
            "js": [
                "\/lib\/jquery\/jquery-1.10.2.js",
                "\/lib\/jquery.qtip.min.js",
                "\/lib\/jquery.hoverIntent.minified.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "http:\/\/github.com\/*",
        "tabs"
    ]
}