TabLinkList
This extension makes a list of title and URL from selected tabs.
Qu'est-ce que TabLinkList ?
TabLinkList est une extension Chrome développée par https://home.u03.itscom.net/skyblue, et sa fonction principale est "This extension makes a list of title and URL from selected tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TabLinkList
Téléchargez les fichiers d'extension TabLinkList au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
これは、現在開いているタブの一覧の中から選択されたタブのタイトルと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/
Informations de Base sur l'Extension
Nom | TabLinkList |
ID | dimkgicbconccdphlpgonbfmdnlkoaim |
URL Officiel | https://chromewebstore.google.com/detail/tablinklist/dimkgicbconccdphlpgonbfmdnlkoaim |
Description | This extension makes a list of title and URL from selected tabs. |
Taille du Fichier | 19.6 KB |
Nombre d'Installations | 76 |
Version Actuelle | 0.6.3 |
Dernière Mise à Jour | 2013-05-27 |
Date de Publication | 2013-05-27 |
Développeur | https://home.u03.itscom.net/skyblue |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/skybluefactory/TabLinkList |
URL de la Page d'Aide | https://github.com/skybluefactory/TabLinkList |
Langues Prises en Charge | 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 } |