Copy Python docs code
Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Vad är Copy Python docs code?
Copy Python docs code är en Chrome-tillägg utvecklad av ducfilan, och dess huvudfunktion är "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".
Ladda ner Copy Python docs code-förlängningens CRX-fil
Ladda ner Copy Python docs code-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
| Namn | |
| ID | pocjankjmagpblnkpbohjikodkpfmbik |
| Officiell webbadress | https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik |
| Beskrivning | Copy code from https://docs.python.org and remove redundant symbols to make it runable directly. |
| Filstorlek | 10.24 KB |
| Antal Installationer | 45 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2018-09-06 |
| Publiceringsdatum | 2018-09-06 |
| Utvecklare | ducfilan |
| E-post | [email protected] |
| Betalningssätt | free |
| URL till Sekretesspolicy Sidan | https://ducfilan.wordpress.com/about |
| Stödda Språk | 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"
}
]
} | |