Add URL To Window Title

Add full URL or hostname of the current page to the window title. Helps other apps, e.g., KeePass, identify current page.

Τι είναι το Add URL To Window Title;

Το Add URL To Window Title είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eric Goldman, και η κύρια λειτουργία του είναι "Add full URL or hostname of the current page to the window title. Helps other apps, e.g., KeePass, identify current page.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Add URL To Window Title

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

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

                        Add the full URL or hostname of the current web page to the window title. Designed to help other applications identify the current window. Helps KeePass (http://www.keepass.info) to identify the current URL for auto-type.

This add-on is designed to add information about the current web page to the Browser Window's title. The add-on was initially designed to facilitate usage of the KeePass's auto-type feature on logon forms, but can likely be used with other password managers or for other purposes where another application needs to monitor the details about the current page opened in a browser (e.g., web development debugging and pen testing).

In its most basic usage, this add-on will add the full URL of the current web page running in the active tab of a given browser window. Optionally, the user can configure the addon to only add the hostname.

There is also an option which will monitor for when an input or password field is selected and will then add the id and name attributes, in addition to the full URL or hostname, to the window title. This is to provide further granularity for auto-type rules, and is useful for many reasons, such as:

* Ensure that you do not start auto-type in a search field which automatically received focus instead of the input field for username or password

* Helps create distinct auto-type rules for the username/email field versus the password, which is often needed for two-step logons

Learn more at: https://github.com/erichgoldman/add-url-to-window-title                    

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

Όνομα Add URL To Window Title Add URL To Window Title
ID ndiaggkadcioihmhghipjmgfeamgjeoi
Επίσημο URL https://chromewebstore.google.com/detail/add-url-to-window-title/ndiaggkadcioihmhghipjmgfeamgjeoi
Περιγραφή Add full URL or hostname of the current page to the window title. Helps other apps, e.g., KeePass, identify current page.
Μέγεθος Αρχείου 87.89 KB
Αριθμός Εγκαταστάσεων 3,076
Τρέχουσα Έκδοση 2.2.1
Τελευταία Ενημέρωση 2019-02-22
Ημερομηνία Δημοσίευσης 2019-02-17
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Eric Goldman
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/erichgoldman/add-url-to-window-title
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/erichgoldman/add-url-to-window-title/wiki
Υποστηριζόμενες Γλώσσες de,en,fr,es,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add URL To Window Title",
    "author": "Eric H Goldman",
    "version": "2.2.1",
    "minimum_chrome_version": "42",
    "manifest_version": 2,
    "description": "__MSG_manifestDescription__",
    "homepage_url": "https:\/\/github.com\/erichgoldman\/add-url-to-window-title",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "managetitle.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}