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文件

下載Web Page Canvas擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}