Shush!
An addon to mute a list of words on several website like Twitter, Facebook or Linkedin
Τι είναι το Shush!;
Το Shush! είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Adrian Tombu, και η κύρια λειτουργία του είναι "An addon to mute a list of words on several website like Twitter, Facebook or Linkedin".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Shush!
Λήψη αρχείων επέκτασης Shush! σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
I created this addon to mute a list of expressions on websites like Twitter, Facebook and Linkedin. But if the curiosity is too intense, just hover the mouse over the content to unblur it ! It started as a way to hide most of the covid-19 related news in French and English, but I quickly made it more flexible to allow the users to manage their own list of expressions and even allow them to quickly import a list of expressions ! You will find more lists of expressions to block in the future on the main page of the addon https://github.com/adriantombu/shush This addon is available on : - twitter.com - facebook.com - linkedin.com - youtube.com - lemonde.fr - liberation.fr - lesechos.fr - lci.fr - lopinion.fr - lefigaro.fr - 20minutes.fr - leparisien.fr - humanite.fr - latribune.fr - francesoir.fr - lequipe.fr - eurosport.fr - rugbyrama.fr - dhnet.be - lalibre.be - nytimes.com
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | gdmhmlcpadohebhkgafcpldlcggdjlml |
Επίσημο URL | https://chromewebstore.google.com/detail/shush/gdmhmlcpadohebhkgafcpldlcggdjlml |
Περιγραφή | An addon to mute a list of words on several website like Twitter, Facebook or Linkedin |
Μέγεθος Αρχείου | 66.36 KB |
Αριθμός Εγκαταστάσεων | 50 |
Τρέχουσα Έκδοση | 1.2.3 |
Τελευταία Ενημέρωση | 2022-04-19 |
Ημερομηνία Δημοσίευσης | 2020-05-17 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Adrian Tombu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/adriantombu/shush |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/adriantombu/shush/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Shush!", "short_name": "shush", "description": "An addon to mute a list of words on several website like Twitter, Facebook or Linkedin", "homepage_url": "https:\/\/github.com\/adriantombu\/shush", "version": "1.2.3", "author": "Adrian Tombu", "icons": { "48": "assets\/icon-48.png", "96": "assets\/icon-96.png", "128": "assets\/icon-128.png" }, "browser_action": { "default_icon": { "48": "assets\/icon-48.png", "96": "assets\/icon-96.png" }, "default_title": "Shush! parameters", "default_popup": "index.html" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.twitter.com\/*", "*:\/\/*.facebook.com\/*", "*:\/\/*.linkedin.com\/*", "*:\/\/*.lemonde.fr\/*", "*:\/\/*.liberation.fr\/*", "*:\/\/*.lesechos.fr\/*", "*:\/\/*.lci.fr\/*", "*:\/\/*.lopinion.fr\/*", "*:\/\/*.lefigaro.fr\/*", "*:\/\/*.20minutes.fr\/*", "*:\/\/*.leparisien.fr\/*", "*:\/\/*.humanite.fr\/*", "*:\/\/*.latribune.fr\/*", "*:\/\/*.francesoir.fr\/*", "*:\/\/*.lequipe.fr\/*", "*:\/\/*.eurosport.fr\/*", "*:\/\/*.rugbyrama.fr\/*", "*:\/\/*.dhnet.be\/*", "*:\/\/*.lalibre.be\/*", "*:\/\/*.nytimes.com\/*" ], "js": [ "app.js" ], "css": [ "styles.css" ], "run_at": "document_idle" } ] } |