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
公式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"
    ]
}