Filestage – Where the best work gets approved

Add comments to live websites and interactive content in Filestage

Τι είναι το Filestage – Where the best work gets approved;

Το Filestage – Where the best work gets approved είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Filestage, και η κύρια λειτουργία του είναι "Add comments to live websites and interactive content in Filestage".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Filestage – Where the best work gets approved

Λήψη αρχείων επέκτασης Filestage – Where the best work gets approved σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Filestage is a review and approval platform that helps you share, discuss, and approve all your files, all in one place.

With the official extension for Chrome , you can review live websites. You and your reviewers can browse through the website, interact with content, and add comments with full context – just like you do for all your other file formats.

Here are a few ways it could help your team:

- Review dynamic content like interactive maps
- Collect feedback on 3D models or 360° images and videos
- Share interactive prototypes from tools like Figma, Adobe XD, Invision, and Sketch
- Review iCloud files like Keynote, Pages, and Numbers
- Iterate on live documents like your privacy policy or terms and conditions                    

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

Όνομα Filestage – Where the best work gets approved Filestage – Where the best work gets approved
ID jpgnokfolagdlepfgoihhdfmbanfecgk
Επίσημο URL https://chromewebstore.google.com/detail/filestage-%E2%80%93-where-the-bes/jpgnokfolagdlepfgoihhdfmbanfecgk
Περιγραφή Add comments to live websites and interactive content in Filestage
Μέγεθος Αρχείου 11.42 KB
Αριθμός Εγκαταστάσεων 3,509
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2023-01-05
Ημερομηνία Δημοσίευσης 2021-10-24
Αξιολόγηση 5.00/5 Συνολικά 19 Αξιολογήσεις
Προγραμματιστής Filestage
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://filestage.io/
Διεύθυνση URL της Σελίδας Βοήθειας https://filestage.io/contact/
Υποστηριζόμενες Γλώσσες de,en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.0.0",
    "default_locale": "en",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.filestage.io\/*",
                "*:\/\/*.dev.filestage.io\/*",
                "https:\/\/localhost\/*"
            ],
            "exclude_matches": [
                "https:\/\/media.private.filestage.io\/*",
                "https:\/\/media.filestage.io\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "all_frames": false
        }
    ],
    "action": {
        "default_icon": {
            "16": "icon_16.png",
            "48": "icon_48.png",
            "128": "icon_128.png"
        },
        "default_title": "__MSG_appName__"
    },
    "permissions": [
        "activeTab",
        "declarativeNetRequest",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "switch-mode": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Switch between comment and browse mode"
        }
    }
}