With My Own Eyes Screen Capturing

This extension is deployed as accompanying tool to the 'With my own eyes' application.

With My Own Eyes Screen Capturing란 무엇입니까?

With My Own Eyes Screen Capturing은(는) https://wesenseit-vm1.shef.ac.uk:3000에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is deployed as accompanying tool to the 'With my own eyes' application."입니다.

확장 프로그램 스크린샷

screenshot

With My Own Eyes Screen Capturing 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This chrome extension simply captures content of your screen. is deployed here as accompanying tool for the 'With my own eyes' tool. Do not use unless you need to use the tool above.

## Credits
This extension was initially developed by Muaz Khan. All credits to him.

The original extension can be found at https://chrome.google.com/webstore/detail/screen-capturing/ajhifddimkapgcifgcodmmfdlknahffk.                    

확장 프로그램 기본 정보

이름 With My Own Eyes Screen Capturing With My Own Eyes Screen Capturing
ID cigkbmjhnhkhoonlcennlonfjmmkpdln
공식 URL https://chromewebstore.google.com/detail/with-my-own-eyes-screen-c/cigkbmjhnhkhoonlcennlonfjmmkpdln
설명 This extension is deployed as accompanying tool to the 'With my own eyes' application.
파일 크기 7.54 KB
설치 횟수 13
현재 버전 3.34
최근 업데이트 2015-01-12
출시 날짜 2015-01-12
개발자 https://wesenseit-vm1.shef.ac.uk:3000
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "With My Own Eyes Screen Capturing",
    "author": "Fabio Ciravegna",
    "version": "3.34",
    "manifest_version": 2,
    "minimum_chrome_version": "34",
    "description": "This extension is deployed as accompanying tool to the 'With my own eyes' application.",
    "homepage_url": "http:\/\/staffwww.dcs.shef.ac.uk\/people\/F.Ciravegna\/Fabio_Ciravegna\/Home.html",
    "background": {
        "scripts": [
            "background-script.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "all_frames": true,
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "desktopCapture"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}