TabLinkList
This extension makes a list of title and URL from selected tabs.
O que é TabLinkList?
TabLinkList é uma extensão do Chrome desenvolvida por https://home.u03.itscom.net/skyblue, e sua principal característica é "This extension makes a list of title and URL from selected tabs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão TabLinkList
Baixe arquivos de extensão TabLinkList 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
これは、現在開いているタブの一覧の中から選択されたタブのタイトルとURLをクリップボードにコピーできる拡張機能です。 This is a Google Chrome extension that makes a list of title and URL from selected tabs. Then you can copy the list to clipboard. source code is available at http://github.com/skybluefactory/TabLinkList Copied text sample is following. ---(e.g.)--- YouTube http://www.youtube.com/ Google https://www.google.co.jp/ Yahoo! JAPAN http://www.yahoo.co.jp/
Informações Básicas da Extensão
Nome | TabLinkList |
ID | dimkgicbconccdphlpgonbfmdnlkoaim |
URL Oficial | https://chromewebstore.google.com/detail/tablinklist/dimkgicbconccdphlpgonbfmdnlkoaim |
Descrição | This extension makes a list of title and URL from selected tabs. |
Tamanho do Arquivo | 19.6 KB |
Contagem de Instalações | 76 |
Versão Atual | 0.6.3 |
Última Atualização | 2013-05-27 |
Data de Publicação | 2013-05-27 |
Desenvolvedor | https://home.u03.itscom.net/skyblue |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/skybluefactory/TabLinkList |
URL da Página de Ajuda | https://github.com/skybluefactory/TabLinkList |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TabLinkList", "description": "This extension makes a list of title and URL from selected tabs.", "version": "0.6.3", "permissions": [ "tabs", "contextMenus", "clipboardWrite" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon48.png", "default_title": "TabLinkList", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "manifest_version": 2 } |