Twitter Plunger

Bypass blocked Twitter accounts (Unblocker, NOT really!)

什麼是Twitter Plunger?

Twitter Plunger是由http://kaluaim.com開發的Chrome擴展程式,該擴展的主要功能是“Bypass blocked Twitter accounts (Unblocker, NOT really!)”。

擴展截圖

screenshot
screenshot

下載Twitter Plunger擴展crx文件

下載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
官方網址 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
    }
}