Rivet

An integration between 5etools and Plutonium.

Vad är Rivet?

Rivet är en Chrome-tillägg utvecklad av Giddy, och dess huvudfunktion är "An integration between 5etools and Plutonium.".

Tilläggsskärmbilder

screenshot

Ladda ner Rivet-förlängningens CRX-fil

Ladda ner Rivet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Rivet Rivet
ID igmilfmbmkmpkjjgoabaagaoohhhbjde
Officiell webbadress https://chromewebstore.google.com/detail/rivet/igmilfmbmkmpkjjgoabaagaoohhhbjde
Beskrivning An integration between 5etools and Plutonium.
Filstorlek 41.27 KB
Antal Installationer 10,405
Aktuell Version 0.1.6
Senast Uppdaterad 2021-03-05
Publiceringsdatum 2020-05-28
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare Giddy
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://5e.tools/
Stödda Språk 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]"
        }
    }
}