Fenix-Chrome-Extension

Fenix extension to perform QuickTasks

Vad är Fenix-Chrome-Extension?

Fenix-Chrome-Extension är en Chrome-tillägg utvecklad av fenixlabs.automations, och dess huvudfunktion är "Fenix extension to perform QuickTasks".

Tilläggsskärmbilder

screenshot

Ladda ner Fenix-Chrome-Extension-förlängningens CRX-fil

Ladda ner Fenix-Chrome-Extension-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

                        With the Fenix extension you will able to clone a transaction from etherscan, creating in one click a task into Fenix Web App                    

Grundläggande Information om Tillägg

Namn Fenix-Chrome-Extension Fenix-Chrome-Extension
ID nekclkhamjgjhkmkilleokgighpbclha
Officiell webbadress https://chromewebstore.google.com/detail/fenix-chrome-extension/nekclkhamjgjhkmkilleokgighpbclha
Beskrivning Fenix extension to perform QuickTasks
Filstorlek 987 KB
Antal Installationer 240
Aktuell Version 2.8
Senast Uppdaterad 2023-02-09
Publiceringsdatum 2022-06-16
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare fenixlabs.automations
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://fenixlabs.io/
Hjälpsida URL https://discord.gg/fenixlabs
URL till Sekretesspolicy Sidan https://fenixlabs.io/privacy-policy.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fenix-Chrome-Extension",
    "description": "Fenix extension to perform QuickTasks",
    "version": "2.8",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "icons": {
        "16": "FenixLogo16.png",
        "32": "FenixLogo32.png",
        "48": "FenixLogo48.png",
        "128": "FenixLogo128.png"
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/localhost\/*",
            "https:\/\/*.automations.fenixlabs.io\/*"
        ]
    }
}