Twitter Block Chain
Blocks all users on a following/followers page.
Τι είναι το Twitter Block Chain;
Το Twitter Block Chain είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον devFluid, και η κύρια λειτουργία του είναι "Blocks all users on a following/followers page.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Twitter Block Chain
Λήψη αρχείων επέκτασης Twitter Block Chain σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Reduce the damage done by retweeting and dogpiling. Simply navigate to a user's followers/following page and activate the extension by clicking the icon next to the omnibox/address bar. The extension does not block users you are following, or re-block users that have already been blocked. You can also export and import lists of followers in a special format. If an abusive user has blocked you, you can use the export function to retrieve the list of their followers/followings after logging out, and then import the result after logging back in to Twitter. View blocking receipts and add protected users by right clicking the extension's icon and choosing "Options." Please report issues on GitHub: https://github.com/satsukitv/twitter-block-chain/issues Source available here: https://github.com/satsukitv/twitter-block-chain
Βασικές Πληροφορίες Επέκτασης
Όνομα | Twitter Block Chain |
ID | dkkfampndkdnjffkleokegfnibnnjfah |
Επίσημο URL | https://chromewebstore.google.com/detail/twitter-block-chain/dkkfampndkdnjffkleokegfnibnnjfah |
Περιγραφή | Blocks all users on a following/followers page. |
Μέγεθος Αρχείου | 299 KB |
Αριθμός Εγκαταστάσεων | 68,013 |
Τρέχουσα Έκδοση | 1.8.3 |
Τελευταία Ενημέρωση | 2019-05-20 |
Ημερομηνία Δημοσίευσης | 2019-05-20 |
Αξιολόγηση | 2.73/5 Συνολικά 402 Αξιολογήσεις |
Προγραμματιστής | devFluid |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/satsukitv/twitter-block-chain |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/satsukitv/twitter-block-chain/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitter Block Chain", "description": "Blocks all users on a following\/followers page.", "version": "1.8.3", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "storage", "activeTab", "webRequest", "webRequestBlocking", "*:\/\/*.twimg.com\/", "https:\/\/api.twitter.com\/", "https:\/\/mobile.twitter.com\/", "https:\/\/twitter.com\/" ], "options_ui": { "browser_style": true, "open_in_tab": true, "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/mobile.twitter.com\/*", "https:\/\/twitter.com\/*" ], "css": [ "css\/content.css" ], "js": [ "js\/browser-polyfill.min.js", "js\/Queue.js", "js\/ExtensionStorage.js", "bower_components\/jquery\/dist\/jquery.min.js", "js\/blockchain.js" ] } ] } |