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.”。
擴展截圖
下載Title - host擴展crx文件
下載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 |
ID | ijgmehophgjjjhipcmcfblojkekdecfo |
官方網址 | 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": [ " |