是否可以在没有浏览器扩展名的情况下加载html页面之前注入/修改java脚本?
我试图在加载页面期间获取函数范围变量的值 因为渲染画布后该变量未设置(我试图获取画布图的值)
答案 0 :(得分:0)
我成功使用了托管在本地服务器上的php脚本,
<?php
// Set your return content type
header('Access-Control-Allow-Origin: *');
$url = $_GET['url'];
//Get that website's content
$handle = fopen($url, "r");
// If there is something, read and return
if($handle)
{
while(!feof($handle))
{
$buffer = fgets($handle, 10000000);
echo $buffer;
}
fclose($handle);
}
?>