
Title - host
用户量:55大小:50.55KiB版本:v 1.1.2更新时间:2021-12-21
This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype.
Title - host 的使用方法详解,最全面的教程
Title - host 描述:
用户数:55
分类:生产工具插件
扩展大小:50.55 KiB
最后更新时间:2021-12-21
版本:v 1.1.2
Title - host 插件简介:
这是来自Chrome商店的 Title - host 浏览器插件,您可以在当前页面下载它的最新版本安装文件,并安装在Chrome、Edge等浏览器上。
Title - host插件下载方法/流程:
点击下载按钮,关注“扩展迷Extfans”公众号并获取验证码,在网页弹窗中输入验证码,即可下载最新安装文件。
Title - host插件安装教程/方法:
(1)将扩展迷上下载的安装包文件(.zip)解压为文件夹,其中类型为“crx”的文件就是接下来需要用到的安装文件
(2) 从设置->更多工具->扩展程序 打开扩展程序页面,或者地址栏输入 Chrome://extensions/ 按下回车打开扩展程序页面
(3) 打开扩展程序页面的“开发者模式”
(4) 将crx文件拖拽到扩展程序页面,
完成安装如有其它安装问题,
请扫描网站底部二维码与客服联系如有疑问请参考:
https://www.extfans.com/installation/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();