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.
扩展基本信息
名称 | Tweet Grabber |
ID | jfkhmnmpppgaempelmhbicaelhnclkjc |
官方URL | 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" ] } ] } |