Twitter Plunger
Bypass blocked Twitter accounts (Unblocker, NOT really!)
Twitter Plunger là gì?
Twitter Plunger là một tiện ích mở rộng Chrome được phát triển bởi http://kaluaim.com, và tính năng chính của nó là "Bypass blocked Twitter accounts (Unblocker, NOT really!)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitter Plunger
Tải xuống các tệp mở rộng Twitter Plunger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
## 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | epekajomamcapaehaogffaekjkfhbgmi |
URL Chính Thức | https://chrome.google.com/webstore/detail/twitter-plunger/epekajomamcapaehaogffaekjkfhbgmi |
Mô tả | Bypass blocked Twitter accounts (Unblocker, NOT really!) |
Kích Thước Tệp | 61.91 KB |
Số Lần Cài Đặt | 128 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2016-09-30 |
Ngày Phát Hành | 2016-09-30 |
Đánh Giá | 3.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | http://kaluaim.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://kalua.im/projects/TwitterPlunger/ |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |