Kineviz GraphXR Report

Screenshot, Export as PPTX or PDF

Co to jest Kineviz GraphXR Report?

Kineviz GraphXR Report to rozszerzenie Chrome opracowane przez kineviz.com, a jego główną funkcją jest „Screenshot, Export as PPTX or PDF”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Kineviz GraphXR Report

Pobierz pliki rozszerzeń Kineviz GraphXR Report w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

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

Podstawowe informacje o rozszerzeniu

Nazwa Kineviz GraphXR Report Kineviz GraphXR Report
ID hncjfjedmbenoggbnhfdfikkneehocnd
Oficjalny URL https://chromewebstore.google.com/detail/kineviz-graphxr-report/hncjfjedmbenoggbnhfdfikkneehocnd
Opis Screenshot, Export as PPTX or PDF
Rozmiar pliku 581 KB
Liczba instalacji 62
Aktualna Wersja 1.7.1
Ostatnia Aktualizacja 2020-04-17
Data Publikacji 2020-04-14
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper kineviz.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://graphxr.kineviz.com
Adres URL Strony Pomocy https://graphxr.kineviz.com
Adres URL Strony Polityki Prywatności http://kineviz.com
Obsługiwane Języki 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
    }
}