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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |