Tweet Masker

Mask tweets that have certain words or phrases in them

Τι είναι το Tweet Masker;

Το Tweet Masker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον muffinista, και η κύρια λειτουργία του είναι "Mask tweets that have certain words or phrases in them".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Tweet Masker

Λήψη αρχείων επέκτασης Tweet Masker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension can mask tweets that either start with a specific phrase, or contain a word or list of words. Any tweets that match the criteria will be blurred out, and you can click a link to show the tweet or hide it. This can be helpful if you would like some more control over your ability to view tweets about particular content on twitter.

Once you've installed the extension, you can specify two lists of phrases -- one specifically for phrases that start tweets, and another list for phrases that occur anywhere within a tweet. When you're viewing Twitter, any tweet that matches your criteria will be blurred out, but it will have a 'show' link if you would like to see the Tweet. The name and avatar of the user who sent the tweet are shown, as well as the phrase which was matched.

Potential uses:
- control viewing of tweets with content warnings
- hide tweets that might have spoilers in them
- hide tweets mentioning content that you'd rather not see without a warning

This is an open source project! The code is here: https://github.com/muffinista/chrome-tw

Thanks very much to @mattlaschneider and @swayandsea who suggested the idea in the first place:

https://twitter.com/mattlaschneider/status/730203784484405248
https://twitter.com/swayandsea/status/730410721645748225                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Tweet Masker Tweet Masker
ID aobdgenfpejjjfcpagkhognobonnjcbc
Επίσημο URL https://chrome.google.com/webstore/detail/aobdgenfpejjjfcpagkhognobonnjcbc
Περιγραφή Mask tweets that have certain words or phrases in them
Μέγεθος Αρχείου 39.67 KB
Αριθμός Εγκαταστάσεων 11
Τρέχουσα Έκδοση 0.1.5
Τελευταία Ενημέρωση 2016-06-15
Ημερομηνία Δημοσίευσης 2016-06-15
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής muffinista
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tweet Masker",
    "short_name": "Tweet Masker",
    "homepage_url": "http:\/\/muffinlabs.com\/",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Mask tweets that have certain words or phrases in them",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage",
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/tweetdeck.twitter.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "mustache.js",
                "main.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}