Twitter Plunger

Bypass blocked Twitter accounts (Unblocker, NOT really!)

Twitter Plunger क्या है?

Twitter Plunger http://kaluaim.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Bypass blocked Twitter accounts (Unblocker, NOT really!)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitter Plunger एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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