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은(는) Filestage에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add comments to live websites and interactive content in Filestage"입니다.

확장 프로그램 스크린샷

screenshot

Filestage – Where the best work gets approved 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}