Copy URLs

Copy all URLs to clipboard

Qu'est-ce que Copy URLs ?

Copy URLs est une extension Chrome développée par https://melanto.com, et sa fonction principale est "Copy all URLs to clipboard".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Copy URLs

Téléchargez les fichiers d'extension Copy URLs 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

                        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)                    

Informations de Base sur l'Extension

Nom Copy URLs Copy URLs
ID efkmnflmpgiklkehhoeiibnmdfffmmjk
URL Officiel https://chromewebstore.google.com/detail/copy-urls/efkmnflmpgiklkehhoeiibnmdfffmmjk
Description Copy all URLs to clipboard
Taille du Fichier 47.07 KB
Nombre d'Installations 36,688
Version Actuelle 1.0.0.3
Dernière Mise à Jour 2020-03-25
Date de Publication 2020-03-25
Évaluation 4.79/5 Total 29 Évaluations
Développeur https://melanto.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://melanto.com/apps/copy-urls/
URL de la Page d'Aide http://melanto.com/apps/copy-urls/help.html
URL de la Page de Politique de Confidentialité https://melanto.com/privacy.html
Langues Prises en Charge 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
}