Tweet Grabber
This extension allows you to copy tweets to your clipboard.
什麼是Tweet Grabber?
Tweet Grabber是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to copy tweets to your clipboard.”。
下載Tweet Grabber擴展crx文件
下載Tweet Grabber擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Adds a button to the Twitter UI to copy a tweet to your clipboard as HTML. 擴展基本資訊
| 名稱 | |
| ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
| 官方網址 | https://chromewebstore.google.com/detail/tweet-grabber/jfkhmnmpppgaempelmhbicaelhnclkjc |
| 簡介 | This extension allows you to copy tweets to your clipboard. |
| 檔案大小 | 196 KB |
| 安裝次數 | 40 |
| 目前版本 | 1.0 |
| 更新時間 | 2017-12-04 |
| 上架時間 | 2017-12-04 |
| 開發者 | Unknown |
| 付費類型 | free |
| 支援的語言 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Tweet Grabber",
"description": "This extension allows you to copy tweets to your clipboard.",
"version": "1.0",
"icons": {
"16": "icon.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/twitter.com\/*",
"https:\/\/twitter.com\/*"
],
"js": [
"jquery-2.1.4.min.js",
"tweet-grabber.js"
],
"css": [
"tweet-grabber.css"
]
}
]
} | |