Timeline Unsee
Unsubscribe from anything directly from timeline in one click! Supports: Facebook
Τι είναι το Timeline Unsee;
Το Timeline Unsee είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yuriy Dorogoy, και η κύρια λειτουργία του είναι "Unsubscribe from anything directly from timeline in one click! Supports: Facebook".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Timeline Unsee
Λήψη αρχείων επέκτασης Timeline Unsee σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Chrome extension that allows us to unsubscribe directly from timeline (Currently Facebook only) PM. If you want to have this in other social media like twitter / reddit and so on, please share with me your thoughts. Facebook require us to use painful way when don't want to see something anymore, first we need to click on 3 dots, then wait for asynchronous call to Facebook server, then try to find text for unsubscribing. Sometimes it's even hidden inside a "more options" sections. That's a lot of work to do actually, which prevents us from filtering what we read and see. I believe that people should have control over the flow, we should be able to hide media directly from the timeline, that's why I made this extension. It's a lightweight JQuery + small script (90Kb in total) that triggers on scroll event. That's it. Extension is not tracking anything, it's opensource, you can check it here: https://github.com/dearcj/timeline-unsubscribe
Βασικές Πληροφορίες Επέκτασης
Όνομα | Timeline Unsee |
ID | kndlpfnhahnkkfgdipfppkfhabehkhda |
Επίσημο URL | https://chromewebstore.google.com/detail/timeline-unsee/kndlpfnhahnkkfgdipfppkfhabehkhda |
Περιγραφή | Unsubscribe from anything directly from timeline in one click! Supports: Facebook |
Μέγεθος Αρχείου | 59.14 KB |
Αριθμός Εγκαταστάσεων | 18 |
Τρέχουσα Έκδοση | 0.11 |
Τελευταία Ενημέρωση | 2019-03-23 |
Ημερομηνία Δημοσίευσης | 2019-03-22 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Yuriy Dorogoy |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/dearcj/timeline-unsubscribe |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Timeline Unsee", "description": "Unsubscribe from anything directly from timeline in one click! Supports: Facebook", "version": "0.11", "author": "Yuri Dorogoy", "content_scripts": [ { "matches": [ "*:\/\/www.facebook.com\/*" ], "css": [ "button.css" ], "js": [ "cash.min.js", "main.js" ], "run_at": "document_end" } ], "permissions": [ "*:\/\/www.facebook.com\/*", "activeTab" ], "web_accessible_resources": [ "hide3.png" ], "browser_action": { "default_icon": "tabico.png", "default_title": "Timeline unsee" } } |