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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}