pyDex
Python index
什么是pyDex?
pyDex是由berwin开发的Chrome扩展程序,该扩展的主要功能是“Python index”。
下载pyDex扩展crx文件
下载pyDex扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | ![]() |
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" ] } ] } |