Copy Python docs code

Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.

Hvad er Copy Python docs code?

Copy Python docs code er en Chrome-udvidelse udviklet af ducfilan, og dens hovedfunktion er "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".

Download Copy Python docs code-udvidelses-CRX-fil

Download Copy Python docs code-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn Copy Python docs code Copy Python docs code
ID pocjankjmagpblnkpbohjikodkpfmbik
Officiel URL https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik
Beskrivelse Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Filstørrelse 10.24 KB
Antal Installationer 45
Nuværende Version 1.0
Senest Opdateret 2018-09-06
Udgivelsesdato 2018-09-06
Udvikler ducfilan
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://ducfilan.wordpress.com/about
Understøttede Sprog 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"
        }
    ]
}