如何将 Amazon Kindle Web 浏览器置于文章模式

发布于 2024-09-16 07:44:09 字数 144 浏览 7 评论 0原文

如何通过 HTML 或 Javascript 将 Amazon Kindle 网络浏览器设置为文章模式?

编者注:某些页面不会被 Kindle 3 浏览器自动检测为“文章”,并且在尝试进入文章模式时会给出错误消息。文章模式使用什么来确定要显示页面的哪一部分?

How do you put the Amazon Kindle web browser into Article Mode via HTML or Javascript?

Editor's note: Some pages are not automatically detected as "articles" by the Kindle 3 browser, and give an error message when trying to go into Article mode. What does the Article mode use to determine what portion of the page to display?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

落花随流水 2024-09-23 07:44:09

这与可读性有关系吗?

http://lifehacker.com/5163401/readability- bookmarklet-quick+formats-pages-for-smoother-text

实际 JavaScript 代码的可读性,是基于启发式的:

// 研究所有段落并找到具有最多

的块并保留它:

这似乎也与 Safari 5 的阅读器模式。以下是 Safari 阅读器所需的内容

这肯定需要更多的调查,但到目前为止,这些似乎是 Safari 阅读器功能发挥作用的最重要因素:

  • 使用正确的标记,即确保最重要的内容包含在容器元素内。无论您使用

    甚至 似乎都不重要 - 只要它是不是

  • 内容需要足够长。使用足够的单词,使用足够的段落,使用足够的标点符号。每个段落应至少有 100 个字符。
  • 阅读器不适用于本地文档。

Is this related at all to Readability?

http://lifehacker.com/5163401/readability-bookmarklet-quick+formats-pages-for-smoother-text

Actual JavaScript code for Readability, which is heuristic based:

// Study all the paragraphs and find the chunk that has the most <p>'s and keep it:

This also appears to be related to Safari 5's Reader mode. Here is what is required for Safari Reader:

This definitely needs more investigating, but so far, these appear to be the most important factors for Safari’s Reader functionality to kick in:

  • Use the right markup, i.e. make sure the most important content is wrapped inside a container element. Whether you use <article>, <div> or even <span> doesn’t seem to matter — as long as it’s not <p>.
  • The content needs to be long enough. Use enough words, use enough paragraphs, use enough punctuation. Every paragraph should have at least 100 characters.
  • Reader doesn’t work for local documents.
玩心态 2024-09-23 07:44:09

http://www. wired.com/gadgetlab/2010/09/simple-tip-turns-kindle-into-ultimate-news-reader/ - 上面概述的“f”键功能或其他功能?不太清楚文章模式是什么意思。

http://www.wired.com/gadgetlab/2010/09/simple-tip-turns-kindle-into-ultimate-news-reader/ - The "f" key feature outlined above or some other feature? Not quite sure what article mode means.

守护在此方 2024-09-23 07:44:09

这意味着浏览器将尝试识别您正在查看的页面是否有文本主体(是一篇文章),将其解析出来,然后仅显示该文本,而不混乱且易于滚动。

我不认为你可以通过网页的代码强制它

It means that the browser will try to identify if the page you are looking at has a main body of text (is an article), parse it out and then display only that text without clutter and for easy scrolling.

I don't think you can force it via the web page's code

简单气质女生网名 2024-09-23 07:44:09

据我所知,一旦网站加载(并且如果您正在讨论特定主题),您可以从菜单中打开“文章模式”。

我也见过类似的 Chrome JS 工具,所以我认为它是 webkit 的一部分。

As far as I know, once the website has loaded (and if you are on an specific topic) you can turn on the "Article Mode" from the menu.

I've seen similar JS tools for Chrome too, so I assume it's part of webkit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文