TabLinkList
This extension makes a list of title and URL from selected tabs.
Cos'è TabLinkList?
TabLinkList è un'estensione di Chrome sviluppata da https://home.u03.itscom.net/skyblue, e la sua funzione principale è "This extension makes a list of title and URL from selected tabs.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TabLinkList
Scarica i file di estensione TabLinkList in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
これは、現在開いているタブの一覧の中から選択されたタブのタイトルと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/ Informazioni di Base sull'Estensione
| Nome | |
| ID | dimkgicbconccdphlpgonbfmdnlkoaim |
| URL Ufficiale | https://chromewebstore.google.com/detail/tablinklist/dimkgicbconccdphlpgonbfmdnlkoaim |
| Descrizione | This extension makes a list of title and URL from selected tabs. |
| Dimensione del File | 19.6 KB |
| Conteggio Installazioni | 76 |
| Versione Corrente | 0.6.3 |
| Ultimo Aggiornamento | 2013-05-27 |
| Data di Pubblicazione | 2013-05-27 |
| Sviluppatore | https://home.u03.itscom.net/skyblue |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/skybluefactory/TabLinkList |
| URL della Pagina di Aiuto | https://github.com/skybluefactory/TabLinkList |
| Lingue Supportate | 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
} | |