Twitter Plunger
Bypass blocked Twitter accounts (Unblocker, NOT really!)
Qu'est-ce que Twitter Plunger ?
Twitter Plunger est une extension Chrome développée par http://kaluaim.com, et sa fonction principale est "Bypass blocked Twitter accounts (Unblocker, NOT really!)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Plunger
Téléchargez les fichiers d'extension Twitter Plunger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
## 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.
Informations de Base sur l'Extension
Nom | |
ID | epekajomamcapaehaogffaekjkfhbgmi |
URL Officiel | https://chrome.google.com/webstore/detail/twitter-plunger/epekajomamcapaehaogffaekjkfhbgmi |
Description | Bypass blocked Twitter accounts (Unblocker, NOT really!) |
Taille du Fichier | 61.91 KB |
Nombre d'Installations | 128 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-09-30 |
Date de Publication | 2016-09-30 |
Évaluation | 3.80/5 Total 5 Évaluations |
Développeur | http://kaluaim.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://kalua.im/projects/TwitterPlunger/ |
Langues Prises en Charge | 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 } } |