Title - host chrome extension

Version: 1.1.2
Title - host
This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype.
5.00 Based on 2 user rates

What is Title - host?

Title - host is a documentation extension for chrome. it's a free extension and is featured in Productivity, it has 60 active users since released its first version, it earns an average rating of 5.00 from 2 rated user, last update is 2374 days ago.


What’s new in version 1.1.2?

                Don't worry about your privacy, full code is below. 

v1.1.2 Added manifest short_name. Improved description.

v1.1.1 Continue checking for dirty title for entire time on webpage.  This improves compatibility with sites like Gmail who change the title every time an email is clicked.

v1.1.0 Refined code to fix hard to change site titles. Code runs asynchronously in background. Checks every second for fifteen seconds.

function sleep(ms) {
  return new Promise(resolve => setTimeout(resolve, ms));
}

async function titlehost() {
  while(true)
  {
	Log('checked');
	if(IsTitleDirty())
		ChangeTitle();
	await sleep(1000);
  }
}

function IsTitleDirty() {
  return (!GetTitle().endsWith(GetHost()));
}

function ChangeTitle() {
  document.title = GetTitle() + ' - ' + GetHost();
  Log('changed');
}

function GetTitle() {
  return document.title;
}

function GetHost() {
  return location.host;
}

function Log(message) {
  return console.log('Title - host> ' + message);
}

titlehost();            

How to install Title - host?

You could download the latest version crx file or older version files and install it.


Preview of Title - host


Technical Features:

  • Latest Version: 1.1.2
  • Requirements: Windows Chrome, Mac Chrome
  • License: Free
  • Latest update: Wednesday, November 1st, 2017
  • Author: jpauls

Title - host Available languages:

English (United States).


FAQ