SnapSite

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

SnapSiteとは何ですか?

SnapSiteはsnapsiteappによって開発されたChromeの拡張機能で、その主な機能は「SnapSite is the simplest way to take website capture in your clipboard. It will also help developers to handle customers bugs.」です。

拡張機能のスクリーンショット

screenshot
screenshot

SnapSite拡張機能のCRXファイルをダウンロード

SnapSite拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 SnapSite SnapSite
ID fkockbmpmgpelkjfnelaifdniigigmkp
公式URL https://chromewebstore.google.com/detail/snapsite/fkockbmpmgpelkjfnelaifdniigigmkp
説明 SnapSite is the simplest way to take website capture in your clipboard. It will also help developers to handle customers bugs.
ファイルサイズ 19.02 KB
インストール数 60
現在のバージョン 0.0.1
最終更新日 2021-04-12
公開日 2016-11-23
評価 4.67/5 合計 3 レビュー
開発者 snapsiteapp
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://flysteur-dev.github.io/snapsite/
対応言語 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"
}