Scroll Portal
Scroll Twitter Mindfully
什么是Scroll Portal?
Scroll Portal是由Dharam Kapila开发的Chrome扩展程序,该扩展的主要功能是“Scroll Twitter Mindfully”。
扩展截图
下载Scroll Portal扩展crx文件
下载Scroll Portal扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Scroll Portal encourages you to scroll Twitter mindfully in a number of ways:-
- Showing a counter with the total number of Tweets you have scrolled.
- Showing a speedometer with your scrolling speed
- Blocking Twitter for a few seconds, whenever you cross the scrolling speed limits.
To use the extension:
1. Navigate to twitter.com
2. On the bottom left (as shown in the screenshot above) you will see a speedometer, along with a number below it. That speedometer monitors your scrolling speed. The number below it is the total tweets scrolled past.
3. Click on the speedometer to see additional extension settings.
I hope you will like it. If you have any problems, don't hesitate to contact me :) 扩展基本信息
| 名称 | |
| ID | kjdpcijkdhbkpdefphapajgbielfcdda |
| 官方URL | https://chromewebstore.google.com/detail/scroll-portal/kjdpcijkdhbkpdefphapajgbielfcdda |
| 简介 | Scroll Twitter Mindfully |
| 文件大小 | 234 KB |
| 安装次数 | 172 |
| 当前版本 | 1.0 |
| 更新时间 | 2021-08-18 |
| 上架时间 | 2021-08-18 |
| 开发者 | Dharam Kapila |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://roamresearch.com/#/app/Public-Dharam/page/MHtFg1Y1r |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Scroll Portal",
"description": "Scroll Twitter Mindfully",
"version": "1.0",
"action": {
"default_popup": "popup.html"
},
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.twitter.com\/*"
],
"js": [
"js\/content_script.js"
]
}
],
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage"
]
} | |