Twitter Rate Limit Checker

A simple extension to read your tweet reading limit

What is Twitter Rate Limit Checker?

Twitter Rate Limit Checker is a Chrome extension developed by kalraevyn, and its main feature is "A simple extension to read your tweet reading limit".

Extension Screenshots

screenshot

Download Twitter Rate Limit Checker Extension CRX File

Download Twitter Rate Limit Checker 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

                        Shows you how many tweets you have remaining and when your count will refresh.                    

Extension Basic Information

Name Twitter Rate Limit Checker Twitter Rate Limit Checker
ID dejlgdoficmagonlokogpogdgoedidfi
Official URL https://chromewebstore.google.com/detail/twitter-rate-limit-checke/dejlgdoficmagonlokogpogdgoedidfi
Description A simple extension to read your tweet reading limit
File Size 9.79 KB
Installation Count 42
Current Version 0.2.0
Last Updated 2023-07-13
Publish Date 2023-07-05
Rating 5.00/5 Total 1 Ratings
Developer kalraevyn
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter Rate Limit Checker",
    "description": "A simple extension to read your tweet reading limit",
    "version": "0.2.0",
    "permissions": [
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/*"
    ],
    "icons": {
        "128": "img\/twitter 128.png",
        "48": "img\/twitter 48.png"
    },
    "content_scripts": [
        {
            "js": [
                "\/scripts\/content.js"
            ],
            "matches": [
                "*:\/\/twitter.com\/home",
                "*:\/\/twitter.com\/notifications"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "\/scripts\/background.js"
    }
}