Copy Python docs code

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

Apa itu Copy Python docs code?

Copy Python docs code adalah ekstensi Chrome yang dikembangkan oleh ducfilan, dan fitur utamanya adalah "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".

Unduh Berkas CRX Ekstensi Copy Python docs code

Unduh file ekstensi Copy Python docs code dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                                            

Informasi Dasar Ekstensi

Nama Copy Python docs code Copy Python docs code
ID pocjankjmagpblnkpbohjikodkpfmbik
URL Resmi https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik
Deskripsi Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Ukuran File 10.24 KB
Jumlah Instalasi 45
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-09-06
Tanggal Publikasi 2018-09-06
Pengembang ducfilan
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://ducfilan.wordpress.com/about
Bahasa yang Didukung 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"
        }
    ]
}