Asana decorator
The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com
Qu'est-ce que Asana decorator ?
Asana decorator est une extension Chrome développée par Nikita Slobozhaninov, et sa fonction principale est "The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Asana decorator
Téléchargez les fichiers d'extension Asana decorator 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
1) You can use > characters for blockquoting. > This is a blockquote Lorem ipsum dolor sit amet... 2) You can produce a horizontal line by placing three or more hyphens on a line by themselves. Lorem ipsum dolor sit amet... --- Excepteur sint occaecat cupidatat non proident.... 3) You can quickly answer with blockquotes using button "REPLY"
Informations de Base sur l'Extension
Nom | |
ID | nnoeneakknmdclilkfjpkhgaadeabpic |
URL Officiel | https://chrome.google.com/webstore/detail/asana-decorator/nnoeneakknmdclilkfjpkhgaadeabpic |
Description | The extension adds styles for blockquotes, horizontal lines in task’s comments on asana.com |
Taille du Fichier | 62.26 KB |
Nombre d'Installations | 41 |
Version Actuelle | 2.3.0 |
Dernière Mise à Jour | 2020-10-18 |
Date de Publication | 2019-10-01 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | Nikita Slobozhaninov |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Asana decorator", "description": "The extension adds styles for blockquotes, horizontal lines in task\u2019s comments on asana.com", "version": "2.3.0", "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "64": "images\/icon_64.png", "128": "images\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/app.asana.com\/*", "http:\/\/app.asana.com\/*" ], "js": [ "content_scripts\/content_scripts.js" ], "css": [ "content_scripts\/content_scripts.css" ], "run_at": "document_end" } ], "permissions": [ "activeTab" ] } |