Twitter Extended
A bunch of extensions and extra features for Twitter
什麼是Twitter Extended?
Twitter Extended是由Que開發的Chrome擴展程式,該擴展的主要功能是“A bunch of extensions and extra features for Twitter”。
擴展截圖
下載Twitter Extended擴展crx文件
下載Twitter Extended擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Your choice of Improvements & fixes to Twitter: ---> Click the blue bird in your Chrome bar to configure.
- Hiding others' likes on your timeline
- Hides Promoted Tweets
- Square Icons
- Hides Trends on the Left
- Shows follower count
- Hides Moments on the top bar
- Hides the Email import box
- Hides the Who to Follow
- Hides curiouscat & ask.fm tweets
- Hides like & rt counts
- Real time tweet
Version 1.1 changelog:
- Fixed chrome permissions so it doesn't ask for non-twitter information
- Added curiouscat & askfm hiding
- Improved memory usage by disabling follower count by default
- Added option to hide like & rt options
- Fixed bug with missing square icons on minimised threads
Version 1.0 release 擴展基本資訊
| 名稱 | |
| ID | bidcnhmidglfaojcifcjnlgeifobcdif |
| 官方網址 | https://chromewebstore.google.com/detail/twitter-extended/bidcnhmidglfaojcifcjnlgeifobcdif |
| 簡介 | A bunch of extensions and extra features for Twitter |
| 檔案大小 | 40.88 KB |
| 安裝次數 | 1,328 |
| 目前版本 | 1.1 |
| 更新時間 | 2018-06-06 |
| 上架時間 | 2018-06-06 |
| 評分 | 4.02/5 共 42 次評分 |
| 開發者 | Que |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://www.youtube.com/watch?v=5LlQNty_C8s |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Twitter Extended",
"description": "A bunch of extensions and extra features for Twitter",
"version": "1.1",
"icons": {
"128": "icon.png"
},
"permissions": [
"storage",
"https:\/\/twitter.com\/*"
],
"content_scripts": [
{
"run_at": "document_end",
"matches": [
"*:\/\/twitter.com\/*",
"*:\/\/www.twitter.com\/*",
"*:\/\/twitter.com\/",
"*:\/\/www.twitter.com\/"
],
"js": [
"change.js"
]
}
],
"browser_action": {
"default_icon": "icon2.png",
"default_popup": "popup.html",
"default_title": "Twitter Extended"
},
"background": {
"scripts": [
"background.js"
]
}
} | |