Tabbard
Copy Tab URLs to Clipboard
What is Tabbard?
Tabbard is a Chrome extension developed by George Chakhidze, and its main feature is "Copy Tab URLs to Clipboard".
Extension Screenshots
Download Tabbard Extension CRX File
Download Tabbard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Copy URLs (with or without titles) from: — All tabs — Only selected tabs — Only focused window tabs Visit extension options to adjust your preferences.
Extension Basic Information
Name | |
ID | jjgomhmmlcknccaafhilfiodnfbommae |
Official URL | https://chromewebstore.google.com/detail/tabbard/jjgomhmmlcknccaafhilfiodnfbommae |
Description | Copy Tab URLs to Clipboard |
File Size | 25.74 KB |
Installation Count | 126 |
Current Version | 1.1.0.0 |
Last Updated | 2021-07-04 |
Publish Date | 2019-03-09 |
Developer | George Chakhidze |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/0xfeeddeadbeef/Tabbard |
Help Page URL | https://github.com/0xfeeddeadbeef/Tabbard/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabbard", "short_name": "Tabbard", "version": "1.1.0.0", "description": "Copy Tab URLs to Clipboard", "minimum_chrome_version": "23.0.0.0", "icons": { "16": "assets\/tabs-16x16.png", "24": "assets\/tabs-24x24.png", "32": "assets\/tabs-32x32.png", "48": "assets\/tabs-48x48.png", "64": "assets\/tabs-64x64.png", "72": "assets\/tabs-72x72.png", "96": "assets\/tabs-96x96.png", "128": "assets\/tabs-128x128.png", "256": "assets\/tabs-256x256.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "assets\/tabs-16x16.png", "24": "assets\/tabs-24x24.png", "32": "assets\/tabs-32x32.png", "48": "assets\/tabs-48x48.png", "64": "assets\/tabs-64x64.png", "72": "assets\/tabs-72x72.png", "96": "assets\/tabs-96x96.png", "128": "assets\/tabs-128x128.png", "256": "assets\/tabs-256x256.png" }, "default_title": "Copy All Tab URLs" }, "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "storage", "tabs" ], "options_ui": { "page": "options.html", "browser_style": true } } |