Add URL to page title Add URL to page title

Developer Tools
Version: 1.0
Last Update: 2013-09-17

Overview

Add URL to page title is a Chrome extension developed by Simon Perry. According to the data from Chrome web store, current version of Add URL to page title is 1.0, updated on 2013-09-17.
709 users have installed this extension. 7 users have rated this extension with an average rating of .

Simply adds the URL to the title bar.

This put the URL of any web page you're on into the page title in the format:

Original Title |url:[http://www.the-url.com]

But why?

In Chrome, other applications used to be able to use Chrome_OmniboxView to get the URL of the page you are on. Since version 28, you can no longer do this.

However, you can still get the title of the window. This simple Chrome extension puts the URL into the title to make it available to other applications.

Rating

7 ratings

Total Installs

709

Information

Last Update

2013-09-17

Current Version

1.0

Size

2.79KiB

Author

Simon Perry

Website

None

Category

Developer Tools

Latest Reviews

See More

avatar Сергей Толкунов
2019-08-25

А кто нибудь может полный код написать? скиньте если где то есть, пожалуйста, на [email protected].

avatar Marc Gutt
2017-10-06

Die Erweiterung ist sauber. Das ist der Quelltext der Extension, der einfach nur location.href dem document.title hinzufügt:
##########################
function doit()
var start = " - [";
var end = "]";

if (document.title.indexOf(start) == -1)
document.title += start + location.href + end;



doit();

window.onload = function ()
doit();

##########################

avatar Владимир Каршаков
2014-09-02

Не работает на ajax-сайтах и если сайт меняет заголовок окна. Было бы не плохо прикрутить на событие смены тайтла

avatar Fei Dai
2013-11-11

Exactly as described and Simple.

avatar Сергей Толкунов
2019-08-25

А кто нибудь может полный код написать? скиньте если где то есть, пожалуйста, на [email protected].