Copy Page Title and URL

A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.

Qu'est-ce que Copy Page Title and URL ?

Copy Page Title and URL est une extension Chrome développée par LiDeguang, et sa fonction principale est "A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Copy Page Title and URL

Téléchargez les fichiers d'extension Copy Page Title and URL 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

                        When users share a webpage link with their friends, a simple URL composed of letters and numbers can seem cold and robotic. However, with our extension, users can easily create a personalized link by pressing the keyboard shortcut Ctrl-shift-p. By selecting the desired webpage and pressing the shortcut, the page title will be copied to the clipboard, and the URL will be pasted into the chat window.

This way, friends can easily understand what interesting content you're sharing, without having to read the URL manually. Our extension also allows users to create unique links for different occasions, such as for work, play, or personal use.

With our extension, users can easily and effectively share webpage links with their friends, and create personalized links that showcase their unique style and preferences.

If you encounter any issues while using the extension, please submit an issue on the following GitHub repository: https://github.com/Deguang/link-and-title-copy-pro/issues                    

Informations de Base sur l'Extension

Nom Copy Page Title and URL Copy Page Title and URL
ID kakoelinbkchhkjcbgjgmailplkhpkod
URL Officiel https://chromewebstore.google.com/detail/copy-page-title-and-url/kakoelinbkchhkjcbgjgmailplkhpkod
Description A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.
Taille du Fichier 107 KB
Nombre d'Installations 166
Version Actuelle 0.1
Dernière Mise à Jour 2023-09-06
Date de Publication 2023-04-06
Développeur LiDeguang
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Deguang/link-and-title-copy-pro
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Page Title and URL",
    "version": "0.1",
    "description": "A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.",
    "manifest_version": 3,
    "permissions": [
        "clipboardWrite",
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "commands": {
        "copy-to-clipboard": {
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            },
            "description": "Copy page title and URL to clipboard"
        }
    },
    "icons": {
        "512": "logo.png"
    }
}