Scroll Solace - Hide Social Media Feeds

Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.

Τι είναι το Scroll Solace - Hide Social Media Feeds;

Το Scroll Solace - Hide Social Media Feeds είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον scrollsolace, και η κύρια λειτουργία του είναι "Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Scroll Solace - Hide Social Media Feeds

Λήψη αρχείων επέκτασης Scroll Solace - Hide Social Media Feeds σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Free yourself from addictive social media feeds that are built to get you trapped infinite scrolling on home page and explore feeds. 

Hide feeds from popular sites, but keep what you need from them: 
- notifications
- messages
- groups
- individual tweets
- etc.

Rather than blocking the entire site, Scroll Solace injects just the right amount of CSS while you're browsing to remove distracting content, and as soon as you navigate away, it removes it to make sure your regular browsing stays snappy and is uninterrupted.                    

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

Όνομα Scroll Solace - Hide Social Media Feeds Scroll Solace - Hide Social Media Feeds
ID pkkpjcbjoplobnnihelcjnigckibeaog
Επίσημο URL https://chromewebstore.google.com/detail/scroll-solace-hide-social/pkkpjcbjoplobnnihelcjnigckibeaog
Περιγραφή Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.
Μέγεθος Αρχείου 48.66 KB
Αριθμός Εγκαταστάσεων 48
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2020-11-15
Ημερομηνία Δημοσίευσης 2020-11-09
Αξιολόγηση 4.57/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής scrollsolace
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Solace - Hide Social Media Feeds",
    "short_name": "Scroll Solace",
    "description": "Removes feeds and distracting content from popular social media like Twitter, Facebook, and LinkedIn.",
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_scripts": [
        {
            "js": [
                "solace.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*",
                "https:\/\/www.facebook.com\/*",
                "https:\/\/m.facebook.com\/*",
                "https:\/\/www.linkedin.com\/*",
                "https:\/\/www.instagram.com\/*"
            ]
        },
        {
            "css": [
                "twitter.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        },
        {
            "css": [
                "linkedin.css"
            ],
            "matches": [
                "https:\/\/www.linkedin.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "run_at": "document_end"
    },
    "browser_action": {
        "default_icon": {
            "16": "img\/[email protected]",
            "32": "img\/[email protected]"
        },
        "default_title": "Google Mail",
        "default_popup": "options.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+T",
                "mac": "MacCtrl+Shift+T"
            },
            "description": "Opens Solace"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "img\/[email protected]",
        "32": "img\/[email protected]",
        "48": "img\/[email protected]",
        "128": "img\/favicon.png"
    }
}