Title - host

This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype.

Title - host란 무엇입니까?

Title - host은(는) jpauls에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype."입니다.

확장 프로그램 스크린샷

screenshot

Title - host 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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();                    

확장 프로그램 기본 정보

이름 Title - host Title - host
ID ijgmehophgjjjhipcmcfblojkekdecfo
공식 URL https://chromewebstore.google.com/detail/title-host/ijgmehophgjjjhipcmcfblojkekdecfo
설명 This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype.
파일 크기 50.55 KB
설치 횟수 56
현재 버전 1.1.2
최근 업데이트 2017-11-01
출시 날짜 2017-11-01
평점 5.00/5 총 2 개의 평점
개발자 jpauls
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Title - host",
    "short_name": "Title - host",
    "author": "Jeff Schollaart",
    "description": "This extension changes the tab title to include the host.  Make Chrome fully compatible with KeePass autotype.",
    "version": "1.1.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "titlehost.js"
            ]
        }
    ]
}