Scroll Portal
Scroll Twitter Mindfully
What is Scroll Portal?
Scroll Portal is a Chrome extension developed by Dharam Kapila, and its main feature is "Scroll Twitter Mindfully".
Extension Screenshots
Download Scroll Portal Extension CRX File
Download Scroll Portal extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 :)
Extension Basic Information
Name | Scroll Portal |
ID | kjdpcijkdhbkpdefphapajgbielfcdda |
Official URL | https://chromewebstore.google.com/detail/scroll-portal/kjdpcijkdhbkpdefphapajgbielfcdda |
Description | Scroll Twitter Mindfully |
File Size | 234 KB |
Installation Count | 172 |
Current Version | 1.0 |
Last Updated | 2021-08-18 |
Publish Date | 2021-08-18 |
Developer | Dharam Kapila |
[email protected] | |
Payment Type | free |
Extension Website | https://roamresearch.com/#/app/Public-Dharam/page/MHtFg1Y1r |
Supported Languages | 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" ] } |