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”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Persona Helper Persona Helper
ID mhojpjjecjmdbbooonpglohcedhnjkho
官方網址 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"
    ]
}