免费的网站数据分析工具

分享
免费的网站数据分析工具

由于Ghost没有系统层面的数据分析工具,因此为了进一步掌握网站的访问情况,还是需要一些第三方的网站数据分析工具,下面是亲测的一些可以有限免费使用的第三方网站数据分析工具,供诸位参考。

Momently

Data Analytics and Campaign Reporting | Momently
Build custom reports for your branded or sponsored campaigns in seconds. Use content analytics and apis to engage your readers by delivering relevant content.

Momently是非常专业的数据分析公司,当然对于小站,免费的已经足够,免费版可以记录3k的访问量。

Momently有一个很好的功能,就是直接分析哪些用户是认真在看文章,也即是记录了用户在文章容器里面的浏览情况:

What is content container? Let's say you have a number of sections on your blog post page, it's your actual post, the comment section at the end, and some advertising here and there. But you want to be able to find out how much time people spend on just reading your post. Or how far people scroll through your content. You don't really care about other sections. To help differentiate them, you can select the "content container" filter to see the information on just your blog post.
Note that when "content container" filter is applied, all metrics on your dashboard are the ones that reflect activity on your content. For example time spent on comments, ads, banners or just browsing through your blog is not accounted for in the total time calculation.

在Dashboard里面,就是下面的样子,这个工具可以直接提取文章标题,可以页面类型为Posts,或者开启Show content container only即可。

Logspot

Logspot | Real-time insights for your SaaS application
Logspot tracks your SaaS events, delivers insightful dashboards, and enhances your product with automations.

logspot的界面很漂亮,而且记录也比较准确。当我把代码添加进网站后,浏览器了一下网页,很快后台就有访问数据,尤其是city的记录,非常准确。

免费版也比较良心,可记录10000访问量。

Microanalytics

Microanalytics.io - Free website analytics. A lightweight, privacy-focused alternative to Google Analytics.

这也是不错的分析工具,界面也美观,可以免费记录5000访问量。

Steelanalytics

Steel Analytics - Website Analytics Tool, Heatmaps, Session Recording - Steelanalytics
Steel Analytics is a simple website analytics tool software that allows you to monitor what your visitors actually do on your website

Steel analtics可以免费记录2000访问量。

Statcounter

Statcounter - Web Analytics Made Easy
A free yet reliable invisible web tracker, highly configurable hit counter and real-time detailed web stats.

这是很专业的数据分析工具,与上面的几个都不一样,分析和用途不同吧,每天都会发邮件提醒,免费版可以记录500个访问量。

阅读更多

更好的字幕翻译工具

更好的字幕翻译工具

如果你还在找一个更好的字幕翻译工具,那么就是是“沉浸式翻译”这个浏览器插件把,免费版本可以使用微软翻译、硅基流动翻译、GlM-4 Flash和Babel lite。 我测试了一下《挽救计划》的英文字幕,翻译成中文。这部电影的字幕其实难度还是挺大的,不过就我测试了硅基流动翻译、GlM-4 Flash和Babel lite 3个模型的翻译效果,这里推荐Babel lite模型。原因如下: 字幕里面有一个断句的 文本,Babel lite能准确翻译出原文表达的意思: 00:09:4900:09:52Over the next 30 years, the Earth could在未来 30 年,地球可能会 00:09:5200:09:55cool maybe 10凉爽,也许 10

By typenode
给网站添加view-transition动画

给网站添加view-transition动画

view-transition是一个很专业的功能,可以通过CSS去实现网页动画,在跨网页浏览上启用view-transition,无需多余配置即可获得一个优雅的网站页面切换效果。 适用于多页面应用的跨文档视图过渡 | View Transitions | Chrome for Developers开始在您的多页应用 (MPA) 中使用跨文档视图过渡。Chrome for DevelopersX demo: HomecamelCase 配置 在Code injection里面添加如下代码即可: <style> @view-transition { navigation: auto; } ::view-transition-group(root){ animation-duration:600ms } </style>

By typenode
Fix ActivityPub Webhook Error

Fix ActivityPub Webhook Error

之前的Ghost托管在PikaPods上面,其实相当于是Managed Ghost,所以你不需要去操心服务器的配置。最近换了服务商,那么情况就不一样了,遇到的所有问题都需要自己去处理,其中一个就是ActivityPub无法正常使用。 错误排查 查看log后发现报错:No Webhook Secret Found。 原因分析 * /.ghost/activitypub/* * /.well-known/webfinger * /.well-known/nodeinfo 上面三个ActivityPub资源配置错误,并未通过https反对带至ap.ghost.org。 处理办法 将需要反代的路径添加至nginx配置文件即可: location ~ /.ghost/activitypub/* { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_se

By typenode