Hide X/Twitter Elements
This extension hides specified elements on the X/Twitter website.
什麼是Hide X/Twitter Elements?
Hide X/Twitter Elements是由https://tweet-reader.com開發的Chrome擴展程式,該擴展的主要功能是“This extension hides specified elements on the X/Twitter website.”。
擴展截圖
下載Hide X/Twitter Elements擴展crx文件
下載Hide X/Twitter Elements擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The following Element which you chose on the option screen will be hidden after those elements are loaded.
(* After changing the settings, please reload the X/Twitter screen with the F5 key.)
- Logo in top corner
- Home timeline's Title area
- Home timeline's Subtitle area
- Sidebar Column
- Images with Article Link
- Who to follow in Timeline
- Topics Carousel in Timeline
- Follows(Following&Followers) Counts
- Actions(Retweets, Quotes, Likes, Bookmarks, Views) Counts
- Read From Older button (in Following)
- Ads' Border
- Focus Mode
* When X/Twitter updates the layout of their website, this extension may temporarily stop working.
* It'll take about 3 days to 2 weeks for this extension to catch up, after the author recognized it.
* Note that X/Twitter updates do not occur in all countries at the same time and there is a lag of several days. 擴展基本資訊
| 名稱 | |
| ID | bkjfgbniifclpfjdpbjcebndlimfkkeg |
| 官方網址 | https://chromewebstore.google.com/detail/hide-xtwitter-elements/bkjfgbniifclpfjdpbjcebndlimfkkeg |
| 簡介 | This extension hides specified elements on the X/Twitter website. |
| 檔案大小 | 50.52 KB |
| 安裝次數 | 1,000 |
| 目前版本 | 2.10.15 |
| 更新時間 | 2024-01-05 |
| 上架時間 | 2019-12-25 |
| 評分 | 2.89/5 共 19 次評分 |
| 開發者 | https://tweet-reader.com |
| 電子郵箱 | [email protected] |
| 付費類型 | in_app |
| 擴展官網 | https://hte.tweet-reader.com/search/label/Japanese |
| 說明頁面URL | https://twitter.com/HotChaiLLC |
| 隱私政策頁面URL | https://tweet-reader.com/privacy |
| 支援的語言 | en,ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_appName__",
"short_name": "HTE",
"version": "2.10.15",
"default_locale": "en",
"description": "__MSG_appDesc__",
"icons": {
"48": "twit48.png",
"128": "twit128.png"
},
"action": {
"default_icon": "twit48.png",
"default_title": "Hide X\/Twitter Elements"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"functions.js",
"twitterstyle.js"
],
"matches": [
"http:\/\/www.twitter.com\/*",
"https:\/\/www.twitter.com\/*",
"http:\/\/twitter.com\/*",
"https:\/\/twitter.com\/*",
"http:\/\/www.x.com\/*",
"https:\/\/www.x.com\/*",
"http:\/\/x.com\/*",
"https:\/\/x.com\/*"
]
}
],
"options_page": "options.html",
"permissions": [
"storage"
]
} | |