我可以从 Firefox 扩展获取当前页面源代码吗?
这可以做到吗? 如何?
我想写我自己的扩展。 可以在我自己的扩展中获取当前页面的源代码吗?
Can this be done? How?
I want to write my own extension. Can Get the current page sorcecode in my own extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Rich 所说,在 URL 前面添加
view-source
将为您提供当前页面的源代码。 键盘快捷键是Ctrl+U
。有许多现有的 Firefox 扩展可以获取页面的源代码并对其应用一些操作(颜色编码、语法检查等)。 下载它们并看看它们如何处理它可能是一个很好的起点!
7 个 Firefox 扩展来探索源代码代码
查看格式化源扩展
如果您Firefox 扩展开发新手,这篇文章Lifehacker 是一本关于如何开始的优秀入门读物,它将让您了解在上面链接的扩展中哪里查找可能与您自己的任务相似的任务。
As Rich says, adding
view-source
in front of the URL will give you the current page's source code. A keyboard shortcut for this isCtrl+U
.There are a number of existing Firefox extensions that fetch a page's source code and apply some action to it (colour-coding, syntax-checking, etc). Downloading them and looking at how they handle it may be a good place to start!
7 Firefox extensions to explore source code
View Formatted Source extension
If you're new to Firefox extension development, this article at Lifehacker is an excellent primer in how to start, and will give you an idea of where to look in the above linked extensions for tasks that may be similar to your own.
当然,只需在 URL 前面添加 view-source: 即可。
例如,将显示此页面的源代码 - 在地址栏中尝试。
Sure, just add view-source: in front of the URL.
Will show the source of this page for instance - try it in the address bar.