我工作的一个网站访问508标准。有一个Firefox插件来帮助每一页上检查网站 WAVE插件结果 我具有行走throught该网站的所有网页履带。结果 现在我想WAVE插件+我的履带式相结合,自动检查网站,508无障碍合规性。

我的问题是如何与从命令行特定的URL使用Firefox插件?

您的帮助,点击感谢 胡志明

有帮助吗?

解决方案

附加组件不能是“运行”(什么意思运行命令行的Adblock,例如?)。

如果你使用不支持命令行PARAMS的加载项。您可以写检查命令行的延伸,并调用任何其他附加的适当功能-on要 “跑”。

其他提示

您可以做在命令行中很多复杂的东西运行内嵌的JavaScript,也许 这可以帮助你:

$ firefox 'data:text/html;charset=ISO-8859-1,
<html>
<head>
<title>TEST Demo</title>
</head>
<body>
<h3 id="title">Test demo</h3>
<script language="javascript">
window.open("http://perso.f-hauri.ch/~felix/svg/dustin_w_Clock_autonom.svg","clock","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=600,height=600,top=100,left=120");
window.open("http://perso.f-hauri.ch/~felix/svg/fw.svg","netrate","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=420,height=372,top=40,left=620");
var s=10;
function cntdwn()
{
  document.getElementById("title").innerHTML="Test demo: "+s;s=s-1;
  if (0 > s)
  {
    window.location="http://perso.f-hauri.ch/~felix/meteo/picture/meteo.html";
  }
  else window.setTimeout(cntdwn,1000);
  };
  window.onload=cntdwn;
 </script>
 </body>'
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top