pyDex

Python index

What is pyDex?

pyDex is a Chrome extension developed by berwin, and its main feature is "Python index".

Download pyDex Extension CRX File

Download pyDex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name pyDex pyDex
ID bgplgkhpdjaafadjhefaminkkmjlfojn
Official URL https://chrome.google.com/webstore/detail/pydex/bgplgkhpdjaafadjhefaminkkmjlfojn
Description Python index
File Size 347 KB
Installation Count 16
Current Version 0.0.2
Last Updated 2014-11-23
Publish Date 2014-11-23
Developer berwin
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}