Twitter Plunger
Bypass blocked Twitter accounts (Unblocker, NOT really!)
Twitter Plungerとは何ですか?
Twitter Plungerはhttp://kaluaim.comによって開発されたChromeの拡張機能で、その主な機能は「Bypass blocked Twitter accounts (Unblocker, NOT really!)」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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 } } |