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
官方網址 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
電子郵箱 [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"
}