Portd

Speed dial to your remote meetings.

Was ist Portd?

Portd ist eine Chrome-Erweiterung, die von Dovetail Applications, Inc entwickelt wurde, und ihr Hauptmerkmal ist "Speed dial to your remote meetings.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Portd-Erweiterungs-CRX-Datei herunterladen

Laden Sie Portd-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Portd is a Speed Dial to your remote meetings. It connects with your work and personal Google/Microsoft/Calendly calendars and allows you to join your meetings from one-place with one-click. There are quick links to setup new meetings too and view details of existing meetings. It supports all popular video conferencing platforms. Visit our website https://portd.io to checkout all the supported platforms.                    

Grundlegende Informationen zur Erweiterung

Name Portd Portd
ID idcinedpcpdoaompmjnmhcpeiohijcjd
Offizielle URL https://chromewebstore.google.com/detail/portd/idcinedpcpdoaompmjnmhcpeiohijcjd
Beschreibung Speed dial to your remote meetings.
Dateigröße 656 KB
Installationsanzahl 67
Aktuelle Version 1.0.52
Letztes Update 2022-11-28
Veröffentlichungsdatum 2020-07-18
Bewertung 5.00/5 Insgesamt 13 Bewertungen
Entwickler Dovetail Applications, Inc
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://portd.io
URL der Datenschutzrichtlinien-Seite https://portd.io/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Portd",
    "version": "1.0.52",
    "manifest_version": 2,
    "description": "Speed dial to your remote meetings.",
    "author": "Piyush Santwani",
    "domain_url": "https:\/\/portd.io",
    "icons": {
        "16": "icons\/new_logo_high.png",
        "48": "icons\/new_logo_high.png",
        "128": "icons\/new_logo_high.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/utils.js",
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/new_logo_high.png",
        "default_title": "Portd",
        "default_popup": "src\/browser_action\/popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "https:\/\/*.zoom.us\/j\/*",
        "https:\/\/*.portd.io\/*"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Z"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.portd.io\/auth\/*"
            ],
            "js": [
                "src\/inject\/utils.js",
                "src\/inject\/transfer-auth-tokens.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.portd.io\/view-event-details?*"
            ],
            "js": [
                "src\/inject\/utils.js",
                "src\/inject\/transfer-multi-calendar-workflow-setting.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.zoom.us\/*",
                "*:\/\/teams.microsoft.com\/*",
                "*:\/\/meet.google.com\/*",
                "*:\/\/*.calendly.com\/*"
            ],
            "js": [
                "src\/inject\/utils.js",
                "src\/inject\/sidebar.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/portd.io; object-src 'self'",
    "web_accessible_resources": [
        "src\/inject\/sidebar.html",
        "src\/inject\/notes.html",
        "src\/inject\/notes.js",
        "src\/inject\/utils.js",
        "src\/inject\/toggle-sidebar-btn.png",
        "src\/inject\/notes_theme.css",
        "src\/inject\/notes.css",
        "src\/inject\/rte.js"
    ]
}