Twitter Rate Limit Checker
A simple extension to read your tweet reading limit
什麼是Twitter Rate Limit Checker?
Twitter Rate Limit Checker是由kalraevyn開發的Chrome擴展程式,該擴展的主要功能是“A simple extension to read your tweet reading limit”。
擴展截圖
下載Twitter Rate Limit Checker擴展crx文件
下載Twitter Rate Limit Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Shows you how many tweets you have remaining and when your count will refresh.
擴展基本資訊
名稱 | Twitter Rate Limit Checker |
ID | dejlgdoficmagonlokogpogdgoedidfi |
官方網址 | https://chromewebstore.google.com/detail/twitter-rate-limit-checke/dejlgdoficmagonlokogpogdgoedidfi |
簡介 | A simple extension to read your tweet reading limit |
檔案大小 | 9.79 KB |
安裝次數 | 42 |
目前版本 | 0.2.0 |
更新時間 | 2023-07-13 |
上架時間 | 2023-07-05 |
評分 | 5.00/5 共 1 次評分 |
開發者 | kalraevyn |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" } } |