QuickTweet

A Twitter ToolKit by Will

O que é QuickTweet?

QuickTweet é uma extensão do Chrome desenvolvida por cobwebsteruk, e sua principal característica é "A Twitter ToolKit by Will".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão QuickTweet

Baixe arquivos de extensão QuickTweet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome QuickTweet QuickTweet
ID glongeojkcbhnkhjjlbijdcfgmndigjp
URL Oficial https://chromewebstore.google.com/detail/quicktweet/glongeojkcbhnkhjjlbijdcfgmndigjp
Descrição A Twitter ToolKit by Will
Tamanho do Arquivo 15.44 KB
Contagem de Instalações 140
Versão Atual 1.1
Última Atualização 2017-07-10
Data de Publicação 2017-07-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor cobwebsteruk
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}