Title - host

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

Title - hostคืออะไร?

Title - host เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jpauls และคุณลักษณะหลักของมันคือ "This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Title - host

ดาวน์โหลดไฟล์ส่วนขยาย Title - host ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}