Twitter Plunger

Bypass blocked Twitter accounts (Unblocker, NOT really!)

Cos'è Twitter Plunger?

Twitter Plunger è un'estensione di Chrome sviluppata da http://kaluaim.com, e la sua funzione principale è "Bypass blocked Twitter accounts (Unblocker, NOT really!)".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Twitter Plunger

Scarica i file di estensione Twitter Plunger in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        ## 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.                    

Informazioni di Base sull'Estensione

Nome Twitter Plunger Twitter Plunger
ID epekajomamcapaehaogffaekjkfhbgmi
URL Ufficiale https://chrome.google.com/webstore/detail/twitter-plunger/epekajomamcapaehaogffaekjkfhbgmi
Descrizione Bypass blocked Twitter accounts (Unblocker, NOT really!)
Dimensione del File 61.91 KB
Conteggio Installazioni 128
Versione Corrente 0.0.1
Ultimo Aggiornamento 2016-09-30
Data di Pubblicazione 2016-09-30
Valutazione 3.80/5 Totale 5 Valutazioni
Sviluppatore http://kaluaim.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://kalua.im/projects/TwitterPlunger/
Lingue Supportate 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
    }
}