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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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 } } |