Twitter Plunger

Bypass blocked Twitter accounts (Unblocker, NOT really!)

O que é Twitter Plunger?

Twitter Plunger é uma extensão do Chrome desenvolvida por http://kaluaim.com, e sua principal característica é "Bypass blocked Twitter accounts (Unblocker, NOT really!)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Twitter Plunger

Baixe arquivos de extensão Twitter Plunger 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

                        ## How it's work

The idea is to present the publicly available page for accounts you're blocked from following. By intercepting the request and removing the Cookie from the requestHeaders.


## How to use it:

- Install the plugin.

- Whenever you visit a blocked page the plugin will reload the page with the publicly available page. (IMPORTANT: At this point you're not logged out!!).

- A notification will appear to tell you the status of the plugin, also it will give you the option to return to the blocked page.                    

Informações Básicas da Extensão

Nome Twitter Plunger Twitter Plunger
ID epekajomamcapaehaogffaekjkfhbgmi
URL Oficial https://chrome.google.com/webstore/detail/twitter-plunger/epekajomamcapaehaogffaekjkfhbgmi
Descrição Bypass blocked Twitter accounts (Unblocker, NOT really!)
Tamanho do Arquivo 61.91 KB
Contagem de Instalações 128
Versão Atual 0.0.1
Última Atualização 2016-09-30
Data de Publicação 2016-09-30
Classificação 3.80/5 Total de 5 Avaliações
Desenvolvedor http://kaluaim.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://kalua.im/projects/TwitterPlunger/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Plunger",
    "description": "Bypass blocked Twitter accounts (Unblocker, NOT really!)",
    "version": "0.0.1",
    "author": "kaluaim",
    "browser_action": {
        "default_icon": "resources\/icon.png"
    },
    "icons": {
        "16": "resources\/icon16.png",
        "48": "resources\/icon48.png",
        "128": "resources\/icon128.png"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        "*:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "css": [
                "resources\/style.css"
            ],
            "js": [
                "resources\/jquery.js",
                "extension.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "resources\/icon.png"
    ],
    "background": {
        "scripts": [
            "resources\/jquery.js",
            "background.js"
        ],
        "persistent": true
    }
}