Title with URL
Get the active web page's title and URL.
O que é Title with URL?
Title with URL é uma extensão do Chrome desenvolvida por R4HS Inc., e sua principal característica é "Get the active web page's title and URL.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Title with URL
Baixe arquivos de extensão Title with URL 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
You can easily get the active web page's title and URL by this app. Updates: v0.1 - First beta version. v0.2 - Click to copy a title of the active tab page and its URL as from plain text to text/html into clip board.
Informações Básicas da Extensão
Nome | Title with URL |
ID | cgnjbelglgfnjfdlfdggdeglimegedpp |
URL Oficial | https://chromewebstore.google.com/detail/title-with-url/cgnjbelglgfnjfdlfdggdeglimegedpp |
Descrição | Get the active web page's title and URL. |
Tamanho do Arquivo | 105 KB |
Contagem de Instalações | 30 |
Versão Atual | 0.2 |
Última Atualização | 2014-09-25 |
Data de Publicação | 2014-09-24 |
Classificação | 2.00/5 Total de 1 Avaliações |
Desenvolvedor | R4HS Inc. |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Title with URL", "description": "Get the active web page's title and URL. ", "version": "0.2", "manifest_version": 2, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "name": "Retrieve", "default_popup": "popup.html", "default_icon": { "19": "twu-icon-19.png", "38": "twu-icon-38.png" } }, "content_scripts": [ { "matches": [ "http:\/\/*.com\/" ], "js": [ "jquery-2.1.1.min.js", "content_script.js" ] } ], "icons": { "16": "twu-icon-16.png", "128": "twu-icon-128.png" }, "permissions": [ "clipboardWrite", "tabs", "activeTab" ] } |