Kineviz GraphXR Report

Screenshot, Export as PPTX or PDF

Co je Kineviz GraphXR Report?

Kineviz GraphXR Report je rozšíření Chrome vyvinuté kineviz.com, a jeho hlavní funkcí je „Screenshot, Export as PPTX or PDF“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Kineviz GraphXR Report

Stáhněte si soubory rozšíření Kineviz GraphXR Report ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

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

Základní Informace o Rozšíření

Název Kineviz GraphXR Report Kineviz GraphXR Report
ID hncjfjedmbenoggbnhfdfikkneehocnd
Oficiální URL https://chromewebstore.google.com/detail/kineviz-graphxr-report/hncjfjedmbenoggbnhfdfikkneehocnd
Popis Screenshot, Export as PPTX or PDF
Velikost souboru 581 KB
Počet instalací 62
Aktuální Verze 1.7.1
Poslední Aktualizace 2020-04-17
Datum Vydání 2020-04-14
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář kineviz.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://graphxr.kineviz.com
URL Stránky Nápovědy https://graphxr.kineviz.com
URL Stránky Zásad Ochrany Soukromí http://kineviz.com
Podporované Jazyky 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
    }
}