URL in title
Reformats the title of each tab according to its URL.
Τι είναι το URL in title;
Το URL in title είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Guillaume Ryder, και η κύρια λειτουργία του είναι "Reformats the title of each tab according to its URL.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης URL in title
Λήψη αρχείων επέκτασης URL in title σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This allows using utilities such as KeePass that auto-fill passwords according to the title of the current window. By default, only the protocol and domain name are appended to the title, but the options page allows full customization. Source code: https://github.com/guilryder/chrome-extensions/tree/main/urlintitle Release notes: v4.0.0: restored suffix preservation logic broken in previous version; migrated to Manifest V3; cleaned up the code v3.0.2: added a mechanism to disable the extension (); added support for pages that delete theelement v3.0.1: added icons
Βασικές Πληροφορίες Επέκτασης
Όνομα | URL in title |
ID | ignpacbgnbnkaiooknalneoeladjnfgb |
Επίσημο URL | https://chromewebstore.google.com/detail/url-in-title/ignpacbgnbnkaiooknalneoeladjnfgb |
Περιγραφή | Reformats the title of each tab according to its URL. |
Μέγεθος Αρχείου | 14.57 KB |
Αριθμός Εγκαταστάσεων | 32,548 |
Τρέχουσα Έκδοση | 4.0.0 |
Τελευταία Ενημέρωση | 2023-12-24 |
Ημερομηνία Δημοσίευσης | 2020-03-11 |
Αξιολόγηση | 4.63/5 Συνολικά 54 Αξιολογήσεις |
Προγραμματιστής | Guillaume Ryder |
Ηλεκτρονικό ταχυδρομείο | guillaume@ryder.fr |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/guilryder/chrome-extensions/tree/main/urlintitle |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/guilryder/chrome-extensions/issues?q=label:urlintitle |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "URL in title", "version": "4.0.0", "description": "Reformats the title of each tab according to its URL.", "author": "Guillaume Ryder", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "page_hook.js" ], "run_at": "document_end" } ], "options_page": "options.html", "permissions": [ "storage" ] } |