1337 enhancer
A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites
Τι είναι το 1337 enhancer;
Το 1337 enhancer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Rishav Rungta, και η κύρια λειτουργία του είναι "A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης 1337 enhancer
Λήψη αρχείων επέκτασης 1337 enhancer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension enhances the over all user experience in 1337x sites. Features: 1. Allows sorting the table based on Seeds, Leech, Size and uploader. 2. Allows batch copying magnet links. 3. Adds a new column to the table with the magnet link to the torrent. 4. Adds the screens from the torrent description to a popup on hovering. 5. Many more...
Βασικές Πληροφορίες Επέκτασης
Όνομα | 1337 enhancer |
ID | kifnljdeoikhjhjbkkjhoaehfbaldbmb |
Επίσημο URL | https://chromewebstore.google.com/detail/1337-enhancer/kifnljdeoikhjhjbkkjhoaehfbaldbmb |
Περιγραφή | A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites |
Μέγεθος Αρχείου | 18.8 KB |
Αριθμός Εγκαταστάσεων | 914 |
Τρέχουσα Έκδοση | 2.6.1 |
Τελευταία Ενημέρωση | 2020-12-19 |
Ημερομηνία Δημοσίευσης | 2020-12-15 |
Αξιολόγηση | 4.14/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Rishav Rungta |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/rishav394/1337-enhancer |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/rishav394/1337-enhancer/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "1337 enhancer", "version": "2.6.1", "description": "A zero dependency chrome extension for enhancing your user experience on 1337x torrent sites", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "options_ui": { "page": "dist\/options.html", "open_in_tab": false }, "permissions": [ "contextMenus", "storage" ], "web_accessible_resources": [ "dist\/*.jpg", "dist\/*.svg" ], "content_scripts": [ { "matches": [ "*:\/\/1337.root.yt\/*", "*:\/\/1337x.to\/*", "*:\/\/1337x.st\/*", "*:\/\/x1337x.ws\/*", "*:\/\/x1337x.eu\/*", "*:\/\/x1337x.se\/*", "*:\/\/1337x.is\/*", "*:\/\/1337x.gd\/*" ], "js": [ "dist\/content.js" ], "css": [ "dist\/content.css" ], "all_frames": true } ], "background": { "persistent": false, "scripts": [ "dist\/background.js" ], "css": [ "dist\/content.css" ] } } |