pyDex

Python index

O que é pyDex?

pyDex é uma extensão do Chrome desenvolvida por berwin, e sua principal característica é "Python index".

Baixar o arquivo CRX da Extensão pyDex

Baixe arquivos de extensão pyDex no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome pyDex pyDex
ID bgplgkhpdjaafadjhefaminkkmjlfojn
URL Oficial https://chrome.google.com/webstore/detail/pydex/bgplgkhpdjaafadjhefaminkkmjlfojn
Descrição Python index
Tamanho do Arquivo 347 KB
Contagem de Instalações 16
Versão Atual 0.0.2
Última Atualização 2014-11-23
Data de Publicação 2014-11-23
Desenvolvedor berwin
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}