Twitter Like and Retweet button
This extension will add a button that combines like and retweet in one click.
什麼是Twitter Like and Retweet button?
Twitter Like and Retweet button是由Shlomo開發的Chrome擴展程式,該擴展的主要功能是“This extension will add a button that combines like and retweet in one click.”。
擴展截圖
下載Twitter Like and Retweet button擴展crx文件
下載Twitter Like and Retweet button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Enhance your Twitter experience like never before with this innovative Chrome extension. This powerful add-on seamlessly integrates with your Twitter account, adding a combination button that allows you to both "Like" and "Retweet" a tweet in a single click. Say goodbye to the hassle of toggling between buttons and give your thumbs a rest and streamlines your engagement process for effortless interaction. 擴展基本資訊
| 名稱 | |
| ID | fppmjeoocppmnbkdalfeidabmjkjbmna |
| 官方網址 | https://chromewebstore.google.com/detail/twitter-like-and-retweet/fppmjeoocppmnbkdalfeidabmjkjbmna |
| 簡介 | This extension will add a button that combines like and retweet in one click. |
| 檔案大小 | 62.97 KB |
| 安裝次數 | 38 |
| 目前版本 | 1.2 |
| 更新時間 | 2023-08-11 |
| 上架時間 | 2023-05-25 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Shlomo |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://www.freeprivacypolicy.com/live/d2b13c19-f46d-4a6c-b5ce-6c1f809fb89a |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitter Like and Retweet button",
"description": "This extension will add a button that combines like and retweet in one click.",
"version": "1.2",
"icons": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
},
"action": {
"default_icon": {
"16": "16.png",
"48": "48.png",
"128": "128.png"
}
},
"content_scripts": [
{
"matches": [
"https:\/\/twitter.com\/home"
],
"js": [
"content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"*.jpg, *.png"
],
"matches": [
"https:\/\/twitter.com\/*"
],
"extension_ids": []
}
]
} | |