Add URL to page title
Simply adds the URL to the title bar.
O que é Add URL to page title?
Add URL to page title é uma extensão do Chrome desenvolvida por Simon Perry, e sua principal característica é "Simply adds the URL to the title bar.".
Baixar o arquivo CRX da Extensão Add URL to page title
Baixe arquivos de extensão Add URL to page title no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Add URL to page title |
ID | ghpeimfjbonkimelnkbgekmcboomkgmi |
URL Oficial | https://chromewebstore.google.com/detail/add-url-to-page-title/ghpeimfjbonkimelnkbgekmcboomkgmi |
Descrição | Simply adds the URL to the title bar. |
Tamanho do Arquivo | 2.79 KB |
Contagem de Instalações | 733 |
Versão Atual | 1.0 |
Última Atualização | 2013-09-17 |
Data de Publicação | 2013-09-17 |
Classificação | 4.29/5 Total de 7 Avaliações |
Desenvolvedor | Simon Perry |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Add URL to page title", "version": "1.0", "manifest_version": 2, "description": "Simply adds the URL to the title bar.", "permissions": [ "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ] } ] } |