Copy Python docs code
Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Wat is Copy Python docs code?
Copy Python docs code is een Chrome-extensie ontwikkeld door ducfilan, en de belangrijkste functie is "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".
Download het CRX-bestand van de extensie Copy Python docs code
Download Copy Python docs code-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Basisinformatie over de Extensie
Naam | |
ID | pocjankjmagpblnkpbohjikodkpfmbik |
Officiële URL | https://chrome.google.com/webstore/detail/copy-python-docs-code/pocjankjmagpblnkpbohjikodkpfmbik |
Beschrijving | Copy code from https://docs.python.org and remove redundant symbols to make it runable directly. |
Bestandsgrootte | 10.24 KB |
Aantal Installaties | 45 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2018-09-06 |
Publicatiedatum | 2018-09-06 |
Ontwikkelaar | ducfilan |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://ducfilan.wordpress.com/about |
Ondersteunde Talen | 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" } ] } |