QuickTweet
A Twitter ToolKit by Will
什么是QuickTweet?
QuickTweet是由cobwebsteruk开发的Chrome扩展程序,该扩展的主要功能是“A Twitter ToolKit by Will”。
扩展截图
下载QuickTweet扩展crx文件
下载QuickTweet扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        A Quick Tweeting tool which allows you to tweet selections, pages, images and URLS without the need of typing or going to twitter.
Right click anywhere on a page to tweet the page URL
Right click selected text to tweet the text
Right click a image to tweet the image
Right click a link to tweet the link                     扩展基本信息
| 名称 |   |  
| ID | glongeojkcbhnkhjjlbijdcfgmndigjp | 
| 官方URL | https://chromewebstore.google.com/detail/quicktweet/glongeojkcbhnkhjjlbijdcfgmndigjp | 
| 简介 | A Twitter ToolKit by Will | 
| 文件大小 | 15.44 KB | 
| 安装次数 | 140 | 
| 当前版本 | 1.1 | 
| 更新时间 | 2017-07-10 | 
| 上架时间 | 2017-07-10 | 
| 评分 | 5.00/5 共1次评分 | 
| 开发者 | cobwebsteruk | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 支持的语言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "QuickTweet",
    "description": "A Twitter ToolKit by Will",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "64": "bigicon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "myscript.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "contextMenus"
    ]
}  |  |