Persona Helper
Creates factoids from online data which can be used to specify persona characteristics in CAIRIS
Persona Helper là gì?
Persona Helper là một tiện ích mở rộng Chrome được phát triển bởi shamal.faily, và tính năng chính của nó là "Creates factoids from online data which can be used to specify persona characteristics in CAIRIS".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Persona Helper
Tải xuống các tệp mở rộng Persona Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mhojpjjecjmdbbooonpglohcedhnjkho |
URL Chính Thức | https://chromewebstore.google.com/detail/persona-helper/mhojpjjecjmdbbooonpglohcedhnjkho |
Mô tả | Creates factoids from online data which can be used to specify persona characteristics in CAIRIS |
Kích Thước Tệp | 432 KB |
Số Lần Cài Đặt | 60 |
Phiên Bản Hiện Tại | 0.9 |
Cập Nhật Lần Cuối | 2019-12-01 |
Ngày Phát Hành | 2019-11-30 |
Nhà Phát Triển | shamal.faily |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://cairis.org |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |