Copy URLs

Copy all URLs to clipboard

Vad är Copy URLs?

Copy URLs är en Chrome-tillägg utvecklad av https://melanto.com, och dess huvudfunktion är "Copy all URLs to clipboard".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Copy URLs-förlängningens CRX-fil

Ladda ner Copy URLs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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)                    

Grundläggande Information om Tillägg

Namn Copy URLs Copy URLs
ID efkmnflmpgiklkehhoeiibnmdfffmmjk
Officiell webbadress https://chromewebstore.google.com/detail/copy-urls/efkmnflmpgiklkehhoeiibnmdfffmmjk
Beskrivning Copy all URLs to clipboard
Filstorlek 47.07 KB
Antal Installationer 36,688
Aktuell Version 1.0.0.3
Senast Uppdaterad 2020-03-25
Publiceringsdatum 2020-03-25
Betyg 4.79/5 Totalt 29 Betyg
Utvecklare https://melanto.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://melanto.com/apps/copy-urls/
Hjälpsida URL http://melanto.com/apps/copy-urls/help.html
URL till Sekretesspolicy Sidan https://melanto.com/privacy.html
Stödda Språk 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
}