Improved URL copy

Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.

Qu'est-ce que Improved URL copy ?

Improved URL copy est une extension Chrome développée par Tahin Rahman, et sa fonction principale est "Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Improved URL copy

Téléchargez les fichiers d'extension Improved URL copy 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 unicode URLs with the most flexibility. 

Features:
- Copy unicode URLs
- Copy URL with title
- Copy as linked title
- Copy as markdown text
- Keyboard shortcut
- Copy link to a highlighted text of a page                    

Informations de Base sur l'Extension

Nom Improved URL copy Improved URL copy
ID nbkaobaododghmjhkjagellfdahgajlb
URL Officiel https://chromewebstore.google.com/detail/improved-url-copy/nbkaobaododghmjhkjagellfdahgajlb
Description Copy Unicode URLs to clipboard without nasty percent-encodings and get Edge like improved copy.
Taille du Fichier 33.69 KB
Nombre d'Installations 342
Version Actuelle 0.0.2
Dernière Mise à Jour 2023-09-22
Date de Publication 2021-09-28
Évaluation 5.00/5 Total 2 Évaluations
Développeur Tahin Rahman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tahins/copy-unicode-urls
URL de la Page d'Aide https://github.com/tahins/copy-unicode-urls
Langues Prises en Charge en,bn
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/tahins\/copy-unicode-urls",
    "default_locale": "en",
    "version": "0.0.2",
    "icons": {
        "128": "icons\/u-red-128.png"
    },
    "author": "[email protected]",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "background": {
        "persistent": true,
        "page": ".\/bg.html"
    },
    "options_page": ".\/pages\/options\/index.html",
    "options_ui": {
        "chrome_style": true,
        "page": ".\/pages\/options\/index.html"
    },
    "browser_action": {
        "default_title": "__MSG_iconHint__",
        "default_icon": ".\/icons\/u-red-128.png",
        "default_popup": ".\/pages\/popup\/index.html"
    },
    "commands": {
        "copy-url": {
            "description": "Copy URL.",
            "suggested_key": "Alt+Shift+U"
        },
        "copy-url-with-title": {
            "description": "Copy URL with title.",
            "suggested_key": "Alt+Shift+T"
        },
        "copy-url-linked-title": {
            "description": "Copy URL as linked title.",
            "suggested_key": "Alt+Shift+L"
        },
        "copy-url-markdown-text": {
            "description": "Copy URL as markdown text.",
            "suggested_key": "Alt+Shift+M"
        }
    }
}