Userlane

The Navigation System for software that allows anybody to use any application instantly

Vad är Userlane?

Userlane är en Chrome-tillägg utvecklad av https://userlane.com, och dess huvudfunktion är "The Navigation System for software that allows anybody to use any application instantly".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

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

Ladda ner Userlane-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

                        Access the Userlane Digital Adoption platform on top of any underlying app to get the fastest and most relevant contextual help, right when you need it.                    

Grundläggande Information om Tillägg

Namn Userlane Userlane
ID oaienfpdbimabhlgjlbdpocbogaijnam
Officiell webbadress https://chromewebstore.google.com/detail/userlane/oaienfpdbimabhlgjlbdpocbogaijnam
Beskrivning The Navigation System for software that allows anybody to use any application instantly
Filstorlek 949 KB
Antal Installationer 200,000
Aktuell Version 23.7.2
Senast Uppdaterad 2024-02-23
Publiceringsdatum 2020-03-31
Betyg 5.00/5 Totalt 49 Betyg
Utvecklare https://userlane.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://userlane.com
Hjälpsida URL https://userlane.com
URL till Sekretesspolicy Sidan https://www.userlane.com/privacy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Userlane",
    "manifest_version": 2,
    "description": "The Navigation System for software that allows anybody to use any application instantly",
    "homepage_url": "https:\/\/userlane.com\/",
    "icons": {
        "128": "commonAssets\/icons\/userlane_icon_128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "commonAssets\/icons\/userlane_icon_128.png",
        "default_title": "Userlane Extension",
        "default_popup": "popup\/index.html"
    },
    "storage": {
        "managed_schema": "commonAssets\/config\/managed_schema.json"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": true
    },
    "options_page": "options\/index.html",
    "externally_connectable": {
        "matches": [
            "*:\/\/*.usln.rocks\/*",
            "*:\/\/*.userlane.com\/*"
        ]
    },
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        "snippets\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.usln.rocks\/*",
                "*:\/\/*.userlane.com\/*"
            ],
            "js": [
                "snippets\/intentpagecontentscript.js"
            ]
        }
    ],
    "version": "23.7.2"
}