Web Page Canvas

An extension that lets you draw on live web pages.

Web Page Canvas란 무엇입니까?

Web Page Canvas은(는) damiang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that lets you draw on live web pages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Web Page Canvas 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension allows you to draw on live web pages.
You can use a line (brush) tool, and change its color or size.
It can also be used as a Full Page screenshot tool.

Features:
- Brush Tool
- Eraser Tool
- Highlighter Tool
- Color Picker
- Custom Size (0 - 30)
- Save full page snapshots
- Manage a library with all your saved drawings

***IMPORTANT NOTE***
Reload the active tabs after installing / updating in order for the extension to work on them.

Notes:
* This extension does not work with pdf files, and chrome's default pages.
* Drawings on pages with height > 6000 pixels cannot be saved.
* Snapshots are saved in .webp format for better performance. 
* Some pages with heavy javascript (e.g. messenger, facebook, google-analytics), will not work due to their website's restrictions.
* Removing the extension, will cause all your snapshots to be lost, but Reloading will not.                    

확장 프로그램 기본 정보

이름 Web Page Canvas Web Page Canvas
ID gbgigcmlilhenhgdndoejbenepgeaahc
공식 URL https://chromewebstore.google.com/detail/web-page-canvas/gbgigcmlilhenhgdndoejbenepgeaahc
설명 An extension that lets you draw on live web pages.
파일 크기 836 KB
설치 횟수 1,890
현재 버전 2.0.1
최근 업데이트 2021-01-23
출시 날짜 2019-03-19
평점 3.88/5 총 8 개의 평점
개발자 damiang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://dgiankakis.it-studies.gr/index.php/en/component/spsimpleportfolio/item/20-web-page-canvas-extension-en
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Page Canvas",
    "short_name": "Web Canvas",
    "description": "An extension that lets you draw on live web pages.",
    "version": "2.0.1",
    "icons": {
        "16": "images\/draw-16.png",
        "48": "images\/draw-48.png",
        "128": "images\/draw-128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/draw-16.png",
            "32": "images\/draw-32.png"
        },
        "default_title": "Draw",
        "default_popup": "\/popup\/html\/home.html"
    },
    "background": {
        "scripts": [
            "background\/background.js",
            "background\/captureAPI.js"
        ],
        "persistent": true
    },
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "storage",
        "unlimitedStorage",
        "downloads"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "content-scripts\/*",
        "web-resources\/*\/*",
        "icons\/*\/*"
    ],
    "content_security_policy": "default-src 'self'; img-src data:",
    "offline_enabled": true,
    "homepage_url": "http:\/\/dgiankakis.it-studies.gr\/index.php\/en\/component\/spsimpleportfolio\/item\/20-web-page-canvas-extension-en"
}