SnapSite

SnapSite is the simplest way to take website capture in your clipboard. It will also help developers to handle customers bugs.

Was ist SnapSite?

SnapSite ist eine Chrome-Erweiterung, die von snapsiteapp entwickelt wurde, und ihr Hauptmerkmal ist "SnapSite is the simplest way to take website capture in your clipboard. It will also help developers to handle customers bugs.".

Erweiterungsscreenshots

screenshot
screenshot

SnapSite-Erweiterungs-CRX-Datei herunterladen

Laden Sie SnapSite-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        It will also help developers to handle customers bugs by providing a Javascript library (check https://flysteur-dev.github.io/snapsite/ for documentation).

This project is open source. Send your feedback at
https://github.com/flysteur-dev/snapsite

Read and change permission is required to send capture content to the web page through content script.

Also available for Firefox, Safari, Opera, Edge.                    

Grundlegende Informationen zur Erweiterung

Name SnapSite SnapSite
ID fkockbmpmgpelkjfnelaifdniigigmkp
Offizielle URL https://chromewebstore.google.com/detail/snapsite/fkockbmpmgpelkjfnelaifdniigigmkp
Beschreibung SnapSite is the simplest way to take website capture in your clipboard. It will also help developers to handle customers bugs.
Dateigröße 19.02 KB
Installationsanzahl 60
Aktuelle Version 0.0.1
Letztes Update 2021-04-12
Veröffentlichungsdatum 2016-11-23
Bewertung 4.67/5 Insgesamt 3 Bewertungen
Entwickler snapsiteapp
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://flysteur-dev.github.io/snapsite/
Unterstützte Sprachen en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_description__",
    "version": "0.0.1",
    "default_locale": "en",
    "icons": {
        "16": "assets\/logo.png",
        "48": "assets\/logo.png",
        "128": "assets\/logo.png"
    },
    "background": {
        "scripts": [
            "app.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_title": "__MSG_app_actions_clipboard__",
        "default_popup": "actions\/clipboard.html"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "handler.js"
            ],
            "run_at": "document_end"
        }
    ],
    "minimum_chrome_version": "20"
}