I tend to have a number of Airtable views open, each with a different focus. However, the default Airtable only says (Table Name) - Airtable.
I’ve written a Greasemonkey/Tampermonkey script that will change the title to (Current View Name) / (Table Name) - Airtable
Note: you will need either the Greasemonkey/Tampermonkey plugin/extension to use this script. Also, since this is an unofficial script, it may (likely) break with a future update to Airtable.
// @name Airtable View Name as Title
// @namespace https://airtable.com/
// @version 0.1
// @description Sets the title of Airtable pages to the View name
// @author AndyLin
// @match *://*.airtable.com/tbl*
// Airtable already loads jQuery
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant none
// ==/UserScript==
//var $ = window.jQuery; //Airtable already loads jQuery
waitForKeyElements ("#table div.ml1.big.stronger", setTitle);
function setTitle (viewNameNode) {
var thePageTitle = viewNameNode.text();
document.title = thePageTitle + " / " + document.title;
}