Kineviz GraphXR Report

Screenshot, Export as PPTX or PDF

Kineviz GraphXR Report란 무엇입니까?

Kineviz GraphXR Report은(는) kineviz.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Screenshot, Export as PPTX or PDF"입니다.

확장 프로그램 스크린샷

screenshot

Kineviz GraphXR Report 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Ctrl+Shift+S: Auto capture the tab and save as image.

Ctrl+Shift+P: Auto capture tab and goto preview page.                    

확장 프로그램 기본 정보

이름 Kineviz GraphXR Report Kineviz GraphXR Report
ID hncjfjedmbenoggbnhfdfikkneehocnd
공식 URL https://chromewebstore.google.com/detail/kineviz-graphxr-report/hncjfjedmbenoggbnhfdfikkneehocnd
설명 Screenshot, Export as PPTX or PDF
파일 크기 581 KB
설치 횟수 62
현재 버전 1.7.1
최근 업데이트 2020-04-17
출시 날짜 2020-04-14
평점 5.00/5 총 1 개의 평점
개발자 kineviz.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://graphxr.kineviz.com
도움말 페이지 URL https://graphxr.kineviz.com
개인정보 보호 정책 페이지 URL http://kineviz.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kineviz GraphXR Report",
    "version": "1.7.1",
    "description": "Screenshot, Export as PPTX or PDF",
    "manifest_version": 2,
    "minimum_chrome_version": "68",
    "homepage_url": "https:\/\/graphxr.kineviz.com\/",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "images\/kineviz-128.png",
        "22": "images\/kineviz-128.png",
        "32": "images\/kineviz-128.png",
        "48": "images\/kineviz.png",
        "128": "images\/kineviz-128.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; ",
    "browser_action": {
        "default_icon": "images\/kineviz.png",
        "default_title": "Kineviz GraphXR Report",
        "default_popup": "popup.html"
    },
    "commands": {
        "save-image": {
            "description": "Auto capture the tab and save as image with Ctrl+Shift+S",
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "MacCtrl+Shift+S"
            }
        },
        "capture-image": {
            "description": "Auto capture tab with Ctrl+Shift+P",
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            }
        }
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "",
        "storage",
        "tabCapture",
        "activeTab",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/kineviz-fullscreen.png",
        "images\/kineviz-close.png"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": false,
        "open_in_tab": true
    }
}