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
电子邮箱 [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"
}