Twitter Plunger

Bypass blocked Twitter accounts (Unblocker, NOT really!)

Τι είναι το Twitter Plunger;

Το Twitter Plunger είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://kaluaim.com, και η κύρια λειτουργία του είναι "Bypass blocked Twitter accounts (Unblocker, NOT really!)".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Twitter Plunger

Λήψη αρχείων επέκτασης Twitter Plunger σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitter Plunger Twitter Plunger
ID epekajomamcapaehaogffaekjkfhbgmi
Επίσημο URL https://chrome.google.com/webstore/detail/twitter-plunger/epekajomamcapaehaogffaekjkfhbgmi
Περιγραφή Bypass blocked Twitter accounts (Unblocker, NOT really!)
Μέγεθος Αρχείου 61.91 KB
Αριθμός Εγκαταστάσεων 128
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2016-09-30
Ημερομηνία Δημοσίευσης 2016-09-30
Αξιολόγηση 3.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής http://kaluaim.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://kalua.im/projects/TwitterPlunger/
Υποστηριζόμενες Γλώσσες 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
    }
}