Copy Python docs code
Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Was ist Copy Python docs code?
Copy Python docs code ist eine Chrome-Erweiterung, die von ducfilan entwickelt wurde, und ihr Hauptmerkmal ist "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".
Copy Python docs code-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Python docs code-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pocjankjmagpblnkpbohjikodkpfmbik |
| Offizielle URL | https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik |
| Beschreibung | Copy code from https://docs.python.org and remove redundant symbols to make it runable directly. |
| Dateigröße | 10.24 KB |
| Installationsanzahl | 45 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2018-09-06 |
| Veröffentlichungsdatum | 2018-09-06 |
| Entwickler | ducfilan |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://ducfilan.wordpress.com/about |
| Unterstützte Sprachen | 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"
}
]
} | |