Remove Tweet Views
Removes the new tweet views from Twitter
什麼是Remove Tweet Views?
Remove Tweet Views是由https://robin.software開發的Chrome擴展程式,該擴展的主要功能是“Removes the new tweet views from Twitter”。
擴展截圖
下載Remove Tweet Views擴展crx文件
下載Remove Tweet Views擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Removes the newly added impressions on every tweet and brings back the Twitter Bird
擴展基本資訊
名稱 | |
ID | dokodkdpdbcmhopjooolcchokhmehiki |
官方網址 | https://chromewebstore.google.com/detail/remove-tweet-views/dokodkdpdbcmhopjooolcchokhmehiki |
簡介 | Removes the new tweet views from Twitter |
檔案大小 | 21.65 KB |
安裝次數 | 37 |
目前版本 | 0.0.3 |
更新時間 | 2023-07-27 |
上架時間 | 2022-12-24 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://robin.software |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://robin.software |
說明頁面URL | https://twitter.com/robin__software |
隱私政策頁面URL | https://robin.software/imprint |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "$schema": "https:\/\/developer.chrome.com\/extensions\/manifest_v3.json", "name": "Remove Tweet Views", "description": "Removes the new tweet views from Twitter", "version": "0.0.3", "icons": { "16": "logo\/icon-16.png", "48": "logo\/icon-48.png", "128": "logo\/icon-128.png" }, "options_page": "settings\/settings.html", "action": { "default_title": "Remove Tweet Views", "default_popup": "popup\/popup.html" }, "web_accessible_resources": [ { "resources": [ "badgeHandler.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ], "permissions": [ "storage" ], "content_scripts": [ { "js": [ "foreground.js" ], "matches": [ "https:\/\/twitter.com\/*" ] } ] } |