pyDex

Python index

Cos'è pyDex?

pyDex è un'estensione di Chrome sviluppata da berwin, e la sua funzione principale è "Python index".

Scarica il file CRX dell'estensione pyDex

Scarica i file di estensione pyDex in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        For the people who are going through any kind of tutorial, beginner, intermediate, or experienced, sometimes we just forget what certain functions do.

We hoped to create a simple, streamlined solution to that problem.                    

Informazioni di Base sull'Estensione

Nome pyDex pyDex
ID bgplgkhpdjaafadjhefaminkkmjlfojn
URL Ufficiale https://chrome.google.com/webstore/detail/pydex/bgplgkhpdjaafadjhefaminkkmjlfojn
Descrizione Python index
Dimensione del File 347 KB
Conteggio Installazioni 16
Versione Corrente 0.0.2
Ultimo Aggiornamento 2014-11-23
Data di Pubblicazione 2014-11-23
Sviluppatore berwin
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "pyDex",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Python index",
    "homepage_url": "http:\/\/bearwin.net",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery\/jquery.min.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "css\/injected.css"
            ]
        }
    ]
}