Persona Helper
Creates factoids from online data which can be used to specify persona characteristics in CAIRIS
Was ist Persona Helper?
Persona Helper ist eine Chrome-Erweiterung, die von shamal.faily entwickelt wurde, und ihr Hauptmerkmal ist "Creates factoids from online data which can be used to specify persona characteristics in CAIRIS".
Erweiterungsscreenshots
Persona Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Persona Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | mhojpjjecjmdbbooonpglohcedhnjkho |
Offizielle URL | https://chromewebstore.google.com/detail/persona-helper/mhojpjjecjmdbbooonpglohcedhnjkho |
Beschreibung | Creates factoids from online data which can be used to specify persona characteristics in CAIRIS |
Dateigröße | 432 KB |
Installationsanzahl | 60 |
Aktuelle Version | 0.9 |
Letztes Update | 2019-12-01 |
Veröffentlichungsdatum | 2019-11-30 |
Entwickler | shamal.faily |
Zahlungsart | free |
Erweiterungswebsite | https://cairis.org |
Unterstützte Sprachen | 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" ] } |