Title - host

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

Title - host क्या है?

Title - host jpauls द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension changes the tab title to include the host. Make Chrome fully compatible with KeePass autotype."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Title - host एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}