Taking screenshot using javascript for chrome extensions

前端 未结 5 2023
名媛妹妹
名媛妹妹 2020-11-27 10:47

I have made a lot of search regarding taking pictures using JS but none seem to be useful. Some say using activeX controls, which doesn\'t suit my situation. I was hoping to

相关标签:
5条回答
  • 2020-11-27 11:19

    Since you're using this in Chrome Extensions, the Tab API has a method called captureVisibleTab, which allows captures the visible area of the currently selected tab in the specified window.

    To use that you just add "tabs" to your permissions manifest. And from your background page, or popup (or any other extension page), you just call that method like this:

    chrome.tabs.captureVisibleTab(null, {}, function (image) {
       // You can add that image HTML5 canvas, or Element.
    });
    

    You can control the property by adding {quality: 50} and change the format too, all described within the docs mentioned above.

    The beauty of HTML5, you can alter that image with HTML5 Canvas, you can manipulate, transform, modify, clip, anything you want, very easily!

    Hope that is what your looking for! Happy New Years!

    0 讨论(0)
  • 2020-11-27 11:19

    I'm not sure if this was available when the original answer was given, but Google now has an example available that shows how to take screenshots:

    http://developer.chrome.com/extensions/samples.html

    Search for "Test Screenshot Extension" on this page.

    0 讨论(0)
  • 2020-11-27 11:20

    If you are looking for working example, I have created repo with extension which take screenshot of the entire web page. Take a look here: https://github.com/marcinwieprzkowicz/take-screenshot

    0 讨论(0)
  • 2020-11-27 11:21

    If you’re inside an enterprise, your IT might set the policy DisableScreenshots to true. You can check it by going into chrome://policy and search for this key.

    0 讨论(0)
  • 2020-11-27 11:24

    Here is another approach that worked for me.
    The requirements were as follows:
    (a) capture a screenshot in a chrome extension
    (b) the screenshot must have a transparent background
    (c) the screenshot must be communicated to a different process (through HTTP)

    In this section i will present a code fragment addressing requirement (b)
    Useful references are:
    chrome extensions debugger api
    chrome devtools protocol debugger domain
    You may want to start reading code from the last function attachToDebugger

    function captureScreenshot(tabId) {
    
        logMsg(`{page}: captureScreenshot: status=aboutTo, tabId=${tabId}`);
    
        chrome.debugger.sendCommand(
            {tabId:tabId},
            "Page.captureScreenshot", 
            {format: "png", fromSurface: true},
            response => {
                if(chrome.runtime.lastError) {
                    logMsg(`{back}: captureScreenshot: status=failed, tabId=${tabId}`);
                }
                else {
                    var dataType = typeof(response.data);
                    logMsg(`{back}: captureScreenshot: status=success, tabId=${tabId}, dataType=${dataType}`);
                    saveScreenshotRemotely(response.data);
                }
            });
    
        logMsg(`{page}: captureScreenshot: status=commandSent, tabId=${tabId}`);
    }
    
    //---------------------------------------------------------------------------
    
    function setColorlessBackground(tabId) {
    
        logMsg(`{back}: setColorlessBackground: status=aboutTo, tabId=${tabId}`);
    
        chrome.debugger.sendCommand(
            {tabId:tabId}, 
            "Emulation.setDefaultBackgroundColorOverride",
            {'color': {'r': 0, 'g': 0, 'b': 0, 'a': 0}},
            function () {
                logMsg(`{back}: setColorlessBackground: status=enabled, tabId=${tabId}`);
                captureScreenshot(tabId);
            });
    
        logMsg(`{back}: setColorlessBackground: status=commandSent, tabId=${tabId}`);
    }
    
    //---------------------------------------------------------------------------
    
    function enableDTPage(tabId) {
    
        logMsg(`{back}: enableDTPage: status=aboutTo, tabId=${tabId}`);
    
        chrome.debugger.sendCommand(
            {tabId:tabId}, 
            "Page.enable", 
            {}, 
            function () {
                logMsg(`{back}: enableDTPage: status=enabled, tabId=${tabId}`);
                setColorlessBackground(tabId);
                /*
                 * you can comment 
                 * setColorlessBackground(tabId);
                 * and invoke 
                 * captureScreenshot(tabId);
                 * directly if you are not interested in having a 
                 * transparent background
                 */
            });
    
        logMsg(`{back}: enableDTPage: status=commandSent, tabId=${tabId}`);
    }
    
    //---------------------------------------------------------------------------
    
    function attachToDebugger(tabId) {
        chrome.debugger.attach(
            {tabId:tabId}, 
            g_devtools_protocol_version,
            () => {
                if (chrome.runtime.lastError) {
                    alert(chrome.runtime.lastError.message);
                    logMsg(`{back}: debugger attach failed: error=${chrome.runtime.lastError.message}`);
                }
                else {
                    logMsg(`{back}: debugger attach success: tabId=${tabId}`);
                    enableDTPage(tabId);
                }
            });
    }
    
    0 讨论(0)
提交回复
热议问题