Tribble Chrome Extension

Integrate with the Tribble platform from within your browser.

Τι είναι το Tribble Chrome Extension;

Το Tribble Chrome Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://tribble.ai, και η κύρια λειτουργία του είναι "Integrate with the Tribble platform from within your browser.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Tribble Chrome Extension

Λήψη αρχείων επέκτασης Tribble Chrome Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension lets you create new questionnaires and view details of each generated answer. Easily copy and paste questions and answers to streamline your questionnaire workflows.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tribble Chrome Extension Tribble Chrome Extension
ID ghmmidlcndcdkpkdmbgmkcocfkegoofo
Επίσημο URL https://chromewebstore.google.com/detail/tribble-chrome-extension/ghmmidlcndcdkpkdmbgmkcocfkegoofo
Περιγραφή Integrate with the Tribble platform from within your browser.
Μέγεθος Αρχείου 2.55 MB
Αριθμός Εγκαταστάσεων 70
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2024-02-29
Ημερομηνία Δημοσίευσης 2023-07-15
Προγραμματιστής https://tribble.ai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://tribble.ai
URL της Σελίδας Πολιτικής Απορρήτου https://tribble.ai/privacygoogle
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tribble Chrome Extension",
    "author": "Tribble",
    "version": "1.0.2",
    "manifest_version": 3,
    "description": "Integrate with the Tribble platform from within your browser.",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnGwgyf86Xt38L\/lm04klKZg5oZHY7h4b+BEZAnO8wIyajhajbkjf4g\/rf\/JERNDF8Eu9D48Vz\/2jxBcHzS6g+BDJGHLEQRZBomR19XoPcF+8CG+boPYvL3OCuZt78ij2meuBm2BnnfbTzjHMgYvOA2BpjiEfftp+YucXKln5zEhTxXO4fhsCDWGkCSy5QjRqxN2GGBa49RDDelBFJkP9QhSdryNv\/5aRq0E9gdc9NgbVMp6\/0HXjdzoWsbED6Tm6K7gRZ7miucPAjSimN5Y2kYIHlWma\/cirbXzTFCTm9hbU7YyUvSyWRbpROSFd5+uQH1nZsg5wJAGPctRzr78G5wIDAQAB",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "24": "assets\/icons\/icon-24.png",
        "64": "assets\/icons\/icon-64.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background\/background.js"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "identity",
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "downloads",
        "sidePanel"
    ],
    "host_permissions": [
        "https:\/\/my.tribble.ai\/*",
        "https:\/\/login.tribble.ai\/*"
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon-16.png",
            "48": "assets\/icons\/icon-48.png"
        },
        "default_title": "Click to open Tribble Side Panel"
    },
    "side_panel": {
        "default_path": "popup\/index.html",
        "openPanelOnActionClick": true
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "content\/*",
                "options\/*",
                "popup\/*",
                "background\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}