Persona Helper
Creates factoids from online data which can be used to specify persona characteristics in CAIRIS
什么是Persona Helper?
Persona Helper是由shamal.faily开发的Chrome扩展程序,该扩展的主要功能是“Creates factoids from online data which can be used to specify persona characteristics in CAIRIS”。
扩展截图
下载Persona Helper扩展crx文件
下载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" ] } |