Volley extension

Volley lets you give fast, easy feedback for your website.

Volley extension란 무엇입니까?

Volley extension은(는) https://meetvolley.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Volley lets you give fast, easy feedback for your website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Volley extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Simply create a project, invite your team and use the chrome extension to start annotating your website. Your notes are sent to an easy-to-use collaborative workspace where your entire team can review and resolve the notes with ease.                    

확장 프로그램 기본 정보

이름 Volley extension Volley extension
ID gipdjalmbiackhnmpjlpafmiaciejfdf
공식 URL https://chromewebstore.google.com/detail/volley-extension/gipdjalmbiackhnmpjlpafmiaciejfdf
설명 Volley lets you give fast, easy feedback for your website.
파일 크기 1.99 MB
설치 횟수 2,320
현재 버전 1.1.36
최근 업데이트 2024-02-16
출시 날짜 2020-06-16
평점 3.91/5 총 22 개의 평점
개발자 https://meetvolley.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://meetvolley.com/
개인정보 보호 정책 페이지 URL https://meetvolley.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Volley extension",
    "description": "Volley lets you give fast, easy feedback for your website.",
    "version": "1.1.36",
    "permissions": [
        "tabs",
        "activeTab",
        "tabCapture",
        "cookies",
        "storage",
        "desktopCapture",
        "*:\/\/*.meetvolley.com\/"
    ],
    "web_accessible_resources": [
        "static\/**\/*",
        "mic.html",
        "mic.js"
    ],
    "browser_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "main.js"
            ],
            "css": [
                "static\/css\/main.css"
            ],
            "run_at": "document_start"
        }
    ]
}