Greasemonkey 脚本用于更改 URL 中的变量
在 Google Analytics 的某些页面上,URL 中会显示一个变量。默认值为 10。URL 始终如下所示:
...&trows=10&...
有没有办法将其更改为 trows=100,以便默认显示的行数为 100? 谢谢
On some pages in Google Analytics, there is a variable shown in the URL. The default value is 10. The URL always looks something like this:
...&trows=10&...
is there a way to change that to trows=100, so that the number of rows displayed by default is 100?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 document.location.replace() 以便后退按钮仍然有效。
Use document.location.replace() so that the back button still works.
编辑:如果你想使用后退按钮返回trows=10页面,请使用
.assign
方法,而不是.replace
,但是由于您希望默认值为 100,因此您可能不需要它。Edit: If you want to use back button to go back to trows=10 page, use
.assign
method, instead of.replace
, but since you want 100 as default, you might not need it.是的。您可以修改页面的链接,当 URL 中存在“错误”参数时重新加载页面(使用修改后的参数),或两者兼而有之。对于前者,XPath 对于查找链接非常有用(但不是必需的)。对于后者,您可以修改window.location.search。
Yes. You can modify links to the page, reload the page (with a modified parameter) when the "wrong" parameter is in the URL, or both. For the former, XPath is very useful (but not necessary) for finding links. For the latter, you can modify window.location.search.