Copy Python docs code
Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Cos'è Copy Python docs code?
Copy Python docs code è un'estensione di Chrome sviluppata da ducfilan, e la sua funzione principale è "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".
Scarica il file CRX dell'estensione Copy Python docs code
Scarica i file di estensione Copy Python docs code in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
| Nome | |
| ID | pocjankjmagpblnkpbohjikodkpfmbik |
| URL Ufficiale | https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik |
| Descrizione | Copy code from https://docs.python.org and remove redundant symbols to make it runable directly. |
| Dimensione del File | 10.24 KB |
| Conteggio Installazioni | 45 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2018-09-06 |
| Data di Pubblicazione | 2018-09-06 |
| Sviluppatore | ducfilan |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | https://ducfilan.wordpress.com/about |
| Lingue Supportate | 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"
}
]
} | |