Persona Helper
Creates factoids from online data which can be used to specify persona characteristics in CAIRIS
Τι είναι το Persona Helper;
Το Persona Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον shamal.faily, και η κύρια λειτουργία του είναι "Creates factoids from online data which can be used to specify persona characteristics in CAIRIS".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Persona Helper
Λήψη αρχείων επέκτασης Persona Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a Chrome Extension which allows users of CAIRIS to add factoids based on online sources. These can be used as the basis for specifying persona characteristics in CAIRIS. You can find full instructions on how to use the Persona Helper to automate persona creation in CAIRIS in the CAIRIS documentation: https://cairis.readthedocs.io/en/latest/personas.html#automating-persona-characteristic-creation
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | mhojpjjecjmdbbooonpglohcedhnjkho |
Επίσημο URL | https://chromewebstore.google.com/detail/persona-helper/mhojpjjecjmdbbooonpglohcedhnjkho |
Περιγραφή | Creates factoids from online data which can be used to specify persona characteristics in CAIRIS |
Μέγεθος Αρχείου | 432 KB |
Αριθμός Εγκαταστάσεων | 60 |
Τρέχουσα Έκδοση | 0.9 |
Τελευταία Ενημέρωση | 2019-12-01 |
Ημερομηνία Δημοσίευσης | 2019-11-30 |
Προγραμματιστής | shamal.faily |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://cairis.org |
Υποστηριζόμενες Γλώσσες | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Persona Helper", "description": "Creates factoids from online data which can be used to specify persona characteristics in CAIRIS", "version": "0.9", "short_name": "PersonaHlpr", "homepage_url": "https:\/\/cairis.org", "manifest_version": 2, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-3.1.1.min.js" ] } ], "browser_action": { "default_icon": "icon-128.png", "default_title": "Persona Helper" }, "background": { "scripts": [ "jquery-3.1.1.min.js", "background.js" ] }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "activeTab", "contextMenus" ] } |