PlaybookUX - Screen recorder

A screen recorder app by PlaybookUX

Τι είναι το PlaybookUX - Screen recorder;

Το PlaybookUX - Screen recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον PlaybookUX, και η κύρια λειτουργία του είναι "A screen recorder app by PlaybookUX".

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

screenshot

Λήψη αρχείου CRX της επέκτασης PlaybookUX - Screen recorder

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

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

                        The PlaybookUX chrome extension allows you test websites so you can provide companies with feedback. In order take a test with the PlaybookUX chrome extension, you must first have a link to the study. You will be given task instructions and asked to verbally provide feedback while interacting with the website.                    

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

Όνομα PlaybookUX - Screen recorder PlaybookUX - Screen recorder
ID hkoaocmcjchlpebblflldidnhanndoaf
Επίσημο URL https://chromewebstore.google.com/detail/playbookux-screen-recorde/hkoaocmcjchlpebblflldidnhanndoaf
Περιγραφή A screen recorder app by PlaybookUX
Μέγεθος Αρχείου 5.3 MB
Αριθμός Εγκαταστάσεων 82
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2023-01-30
Ημερομηνία Δημοσίευσης 2022-12-07
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής PlaybookUX
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.playbookux.com/tester
Διεύθυνση URL της Σελίδας Βοήθειας http://help.playbookux.com/en/articles/6795089-using-the-chrome-extension
URL της Σελίδας Πολιτικής Απορρήτου https://www.playbookux.com/privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "PlaybookUX",
    "name": "PlaybookUX - Screen recorder",
    "version": "1.0.4",
    "manifest_version": 3,
    "description": "A screen recorder app by PlaybookUX",
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.playbookux.com\/*",
            "http:\/\/localhost:8080\/*",
            "http:\/\/localhost:8081\/*"
        ]
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ic_finish.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ]
        }
    ]
}