TweetThis
Tweets the current URL
什么是TweetThis?
TweetThis是由Jarryd Lee开发的Chrome扩展程序,该扩展的主要功能是“Tweets the current URL”。
扩展截图
下载TweetThis扩展crx文件
下载TweetThis扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows for an easy one click method to tweet your current URL by clicking the tweet this button up the top right of the browser.
扩展基本信息
名称 | |
ID | dfeipfeeiojbkadlgokhllookmopmdhi |
官方URL | https://chrome.google.com/webstore/detail/tweetthis/dfeipfeeiojbkadlgokhllookmopmdhi |
简介 | Tweets the current URL |
文件大小 | 81.59 KB |
安装次数 | 47 |
当前版本 | 2.1 |
更新时间 | 2014-02-13 |
上架时间 | 2014-02-13 |
评分 | 5.00/5 共1次评分 |
开发者 | Jarryd Lee |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TweetThis", "short_name": "TweetThis", "author": "Jarryd Lee", "icons": { "128": "icon128.png", "16": "icon16.png", "48": "icon48.png" }, "description": "Tweets the current URL", "version": "2.1", "background": { "scripts": [ "jquery.js", "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "jquery.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "icon16.png", "permissions": [ "tabs", "contextMenus", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/api.bit.ly\/*" ] }, "web_accessible_resources": [ "jquery-1.10.1.min.map" ], "manifest_version": 2 } |