pyDex

Python index

ما هو pyDex؟

pyDex هو إضافة Chrome تم تطويرها بواسطة berwin، والميزة الرئيسية لها هي "Python index".

تحميل ملف CRX للإضافة pyDex

قم بتنزيل ملفات الامتداد pyDex بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم pyDex pyDex
ID bgplgkhpdjaafadjhefaminkkmjlfojn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/pydex/bgplgkhpdjaafadjhefaminkkmjlfojn
الوصف Python index
حجم الملف 347 KB
عدد التثبيتات 16
النسخة الحالية 0.0.2
آخر تحديث 2014-11-23
تاريخ النشر 2014-11-23
المطور berwin
نوع الدفع free
اللغات المدعومة 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"
            ]
        }
    ]
}