Copy Python docs code
Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.
Qu'est-ce que Copy Python docs code ?
Copy Python docs code est une extension Chrome développée par ducfilan, et sa fonction principale est "Copy code from https://docs.python.org and remove redundant symbols to make it runable directly.".
Télécharger le fichier CRX de l'extension Copy Python docs code
Téléchargez les fichiers d'extension Copy Python docs code au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Informations de Base sur l'Extension
Nom | |
ID | pocjankjmagpblnkpbohjikodkpfmbik |
URL Officiel | 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. |
Taille du Fichier | 10.24 KB |
Nombre d'Installations | 45 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2018-09-06 |
Date de Publication | 2018-09-06 |
Développeur | ducfilan |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://ducfilan.wordpress.com/about |
Langues Prises en Charge | 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" } ] } |