Copy URLs
Copy all URLs to clipboard
What is Copy URLs?
Copy URLs is a Chrome extension developed by https://melanto.com, and its main feature is "Copy all URLs to clipboard".
Extension Screenshots
Download Copy URLs Extension CRX File
Download Copy URLs 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 all open pages (title and/or address) to clipboard. Select what to export (all tabs or just the web-pages; all windows or current window only) and how to export it (choose between several formats -- simple url list, HTML, CSV etc.) You can define your own (custom) format to generate specific url list (for example -- JavaScript array or XLS table ready to be copy/pasted in Excel)
Extension Basic Information
Name | Copy URLs |
ID | efkmnflmpgiklkehhoeiibnmdfffmmjk |
Official URL | https://chromewebstore.google.com/detail/copy-urls/efkmnflmpgiklkehhoeiibnmdfffmmjk |
Description | Copy all URLs to clipboard |
File Size | 47.07 KB |
Installation Count | 36,688 |
Current Version | 1.0.0.3 |
Last Updated | 2020-03-25 |
Publish Date | 2020-03-25 |
Rating | 4.79/5 Total 29 Ratings |
Developer | https://melanto.com |
[email protected] | |
Payment Type | free |
Extension Website | https://melanto.com/apps/copy-urls/ |
Help Page URL | http://melanto.com/apps/copy-urls/help.html |
Privacy Policy Page URL | https://melanto.com/privacy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy URLs", "short_name": "Copy URLs", "version": "1.0.0.3", "manifest_version": 2, "homepage_url": "http:\/\/melanto.com\/apps\/copy-urls\/", "description": "Copy all URLs to clipboard", "icons": { "16": "icon.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs", "clipboardWrite" ], "browser_action": { "default_icon": "icon.png", "default_title": "Copy URLs", "default_popup": "index.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "incognito": "spanning", "offline_enabled": true } |