Rivet

An integration between 5etools and Plutonium.

什麼是Rivet?

Rivet是由Giddy開發的Chrome擴展程式,該擴展的主要功能是“An integration between 5etools and Plutonium.”。

擴展截圖

screenshot

下載Rivet擴展crx文件

下載Rivet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Send creatures, spells, items, rolls, (and more!) to your Foundry game with the click of a button.                    

擴展基本資訊

名稱 Rivet Rivet
ID igmilfmbmkmpkjjgoabaagaoohhhbjde
官方網址 https://chromewebstore.google.com/detail/rivet/igmilfmbmkmpkjjgoabaagaoohhhbjde
簡介 An integration between 5etools and Plutonium.
檔案大小 41.27 KB
安裝次數 10,405
目前版本 0.1.6
更新時間 2021-03-05
上架時間 2020-05-28
評分 5.00/5 共 4 次評分
開發者 Giddy
電子郵箱 [email protected]
付費類型 free
擴展官網 https://5e.tools/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rivet",
    "version": "0.1.6",
    "description": "An integration between 5etools and Plutonium.",
    "permissions": [
        "tabs",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                "",
                "http:\/\/localhost:8080\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}