yellow.ai Web Widget Launcher

A launcher to test yellow.ai web widgets on any website

Vad är yellow.ai Web Widget Launcher?

yellow.ai Web Widget Launcher är en Chrome-tillägg utvecklad av yellow.ai, och dess huvudfunktion är "A launcher to test yellow.ai web widgets on any website".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner yellow.ai Web Widget Launcher-förlängningens CRX-fil

Ladda ner yellow.ai Web Widget Launcher-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

                        This extension will help users of yellow.ai to test their chatbot and web widgets on their website. The widget inserted will be for their browser only. This way, they will be able to try out the widgets before deploying changes to their website.                    

Grundläggande Information om Tillägg

Namn yellow.ai Web Widget Launcher yellow.ai Web Widget Launcher
ID hlajdopahpkoakfedombhdpomlpmafbb
Officiell webbadress https://chromewebstore.google.com/detail/yellowai-web-widget-launc/hlajdopahpkoakfedombhdpomlpmafbb
Beskrivning A launcher to test yellow.ai web widgets on any website
Filstorlek 35.38 KB
Antal Installationer 420
Aktuell Version 0.0.1
Senast Uppdaterad 2021-08-07
Publiceringsdatum 2021-08-07
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare yellow.ai
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://yellow.ai
Hjälpsida URL https://yellow.ai
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "yellow.ai Web Widget Launcher",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "A launcher to test yellow.ai web widgets on any website",
    "homepage_url": "https:\/\/www.yellow.ai",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery.min.js",
                "inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "yellow.ai Web Widget Launcher",
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    }
}