我们可以使用jquery或php

时间:2019-07-16 14:06:17

标签: php jquery google-chrome-extension

我们可以使用jquery或PHP触发Chrome扩展程序吗?

有一个扩展程序可以捕获整个页面,它可以捕获整个页面,可以通过键盘事件来触发:-

Alt + shift + P

我尝试使用下面的代码触发alt + shift + p,但不起作用

扩展链接:-https://chrome.google.com/webstore/detail/full-page-screen-capture/fdpohaocaechififmbbbbbknoalclacl

setTimeout(function(){
    e.altKey = true;
    e.shiftKey = true;
    e.keyCode = e.which = 80; // 'P' key code value
    console.log(e);            
    $(document).trigger(e);
}, 2000);

我需要像此扩展程序一样的整个屏幕截图。

0 个答案:

没有答案