Copy Python docs code
Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
什么是Copy Python docs code?
Copy Python docs code是由ducfilan开发的Chrome扩展程序,该扩展的主要功能是“Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.”。
下载Copy Python docs code扩展crx文件
下载Copy Python docs code扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | pocjankjmagpblnkpbohjikodkpfmbik |
| 官方URL | https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik |
| 简介 | Copy code from https://docs.python.org and remove redundant symbols to make it runable directly. |
| 文件大小 | 10.24 KB |
| 安装次数 | 45 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-09-06 |
| 上架时间 | 2018-09-06 |
| 开发者 | ducfilan |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 隐私政策页面URL | https://ducfilan.wordpress.com/about |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Copy Python docs code",
"description": "Copy code from https:\/\/docs.python.org and remove redundant symbols to make it runable directly.",
"version": "1.0",
"icons": {
"128": "icon_128.png"
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/docs.python.org\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
]
} | |