我有一个小网页,大约只有 10 行纯 HTML,甚至没有任何 css 或 js。我想将其保存为可以在 iMac 上使用的应用程序。最好的方法是什么?
它使用了 HTML5 的一项功能,目前仅与 Chrome 兼容。
我目前已将 html 文件保存在“应用程序”文件夹中,因此它会出现在应用程序列表中。我希望它出现在 dock 中,但当我在应用程序列表中单击它时,它只会在 chrome 中打开一个新选项卡。我希望它有自己的图标等,并且看起来与 chrome 是独立的。
这容易做到吗?
答案1
你可以使用体液制作特定于站点的浏览器,但它们基于 Safari 或原始 WebKit。或者,您可以在 AppleScript 编辑器中将这样的脚本保存为应用程序:
set u to "http://t.co/"
tell application "Google Chrome"
repeat with w in windows
set i to 0
repeat with t in tabs of w
set i to i + 1
if URL of t is u then
set active tab index of w to i
set index of w to 1
tell t to reload
activate
return
end if
end repeat
end repeat
make new window
set URL of active tab of result to u
activate
end tell
答案2
听起来你正试图在移动平台上实现这一行为。例如在 iOS 上,你可以在跳板上放置网站的书签。在桌面系统上,HTML5 离线 Web 应用程序是浏览器的功能,而不是操作系统的功能。