Copy Python docs code

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

What is Copy Python docs code?

Copy Python docs code is a Chrome extension developed by ducfilan, and its main feature is "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".

Download Copy Python docs code Extension CRX File

Download Copy Python docs code extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Copy Python docs code Copy Python docs code
ID pocjankjmagpblnkpbohjikodkpfmbik
Official URL https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik
Description Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
File Size 10.24 KB
Installation Count 45
Current Version 1.0
Last Updated 2018-09-06
Publish Date 2018-09-06
Developer ducfilan
Email [email protected]
Payment Type free
Privacy Policy Page URL https://ducfilan.wordpress.com/about
Supported Languages 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"
        }
    ]
}