Portd

Speed dial to your remote meetings.

Qu'est-ce que Portd ?

Portd est une extension Chrome développée par Dovetail Applications, Inc, et sa fonction principale est "Speed dial to your remote meetings.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Portd

Téléchargez les fichiers d'extension Portd au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Portd Portd
ID idcinedpcpdoaompmjnmhcpeiohijcjd
URL Officiel https://chromewebstore.google.com/detail/portd/idcinedpcpdoaompmjnmhcpeiohijcjd
Description Speed dial to your remote meetings.
Taille du Fichier 656 KB
Nombre d'Installations 67
Version Actuelle 1.0.52
Dernière Mise à Jour 2022-11-28
Date de Publication 2020-07-18
Évaluation 5.00/5 Total 13 Évaluations
Développeur Dovetail Applications, Inc
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://portd.io
URL de la Page de Politique de Confidentialité https://portd.io/privacy-policy
Langues Prises en Charge 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"
    ]
}