GitHub Searchlite

Search, navigate and download files from any git repository.

¿Qué es GitHub Searchlite?

GitHub Searchlite es una extensión de Chrome desarrollada por Piyush Santwani, y su función principal es "Search, navigate and download files from any git repository.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión GitHub Searchlite

Descarga archivos de extensión GitHub Searchlite en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Admittedly, GitHub has a "find file" button in place to search for files through the repository. But this plugin does more. 

GitHub Search-lite searches for files and folders and informs you about the size and path(this is useful when there are multiple files with the same name, in the project) before you select the file/folder to navigate to. 

Also, once you navigate to a file you may download a copy of the file using the download button. Currently, only files(not folders) can be downloaded. The search box is placed at a convenient position, so that it can be used intuitively.

FEEDBACK / BUG
Having troubles or improvements ideas? Submit your feedback to [email protected]

--------------------------
PLEASE NOTICE: "GitHub Searchlite" is not endorsed by GitHub.
GitHub and Chrome, are trademarks of their respective owners.                    

Información Básica de la Extensión

Nombre GitHub Searchlite GitHub Searchlite
ID lohekcihaibnhdhlbohicihejbfchikj
URL Oficial https://chromewebstore.google.com/detail/github-searchlite/lohekcihaibnhdhlbohicihejbfchikj
Descripción Search, navigate and download files from any git repository.
Tamaño del Archivo 82.1 KB
Cantidad de Instalaciones 29
Versión Actual 0.0.7
Última Actualización 2016-12-18
Fecha de Publicación 2016-12-18
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Piyush Santwani
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://savegpt.com/privacy_policy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Searchlite",
    "short_name": "Git Search",
    "author": "Piyush Santwani",
    "version": "0.0.7",
    "manifest_version": 2,
    "description": "Search, navigate and download files from any git repository.",
    "icons": {
        "16": "icons\/github_300.png",
        "48": "icons\/github_300.png",
        "128": "icons\/github_300.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/github_300.png",
        "default_title": "Github Searchlite"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "storage",
        "https:\/\/github.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "css": [
                "src\/inject\/inject.css",
                "src\/css\/easy-autocomplete.min.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "src\/js\/jquery.min.js",
                "src\/js\/jquery.easy-autocomplete.min.js",
                "src\/inject\/inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "src\/js\/jquery.min.js",
        "src\/js\/jquery.easy-autocomplete.min.js",
        "src\/css\/easy-autocomplete.min.css"
    ]
}