Copy page title and url

Add a context menu item to copy page title (or selected text) and url to clipboard.

O que é Copy page title and url?

Copy page title and url é uma extensão do Chrome desenvolvida por Marek Jedliński, e sua principal característica é "Add a context menu item to copy page title (or selected text) and url to clipboard.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy page title and url

Baixe arquivos de extensão Copy page title and url no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        This Firefox/Chrome extension adds an item to the context menu which allows you to copy the title and the url of the current page to clipboard. If any text is selected on the page, the selected text is copied instead of the title of the page (the url is always included).

This is useful for example when emailing/sharing links or collecting citations/quotes from the web.

How to use:

* When browsing any web page:

Right-click the page. In the context menu, a new item will be displayed: "Copy page title and url". This command will copy the title of the current page and its URL to clipboard.

* When (some) text on the page is selected:

Right-click the selected text. In the context menu, a new item will be displayed: "Copy selection and url". This command will copy the selected text and the URL (but not the page title) to clipboard.

If you hold down the Control or Shift key while clicking the menu item, the extension will copy the title of the page as well as the selected text and the URL.                    

Informações Básicas da Extensão

Nome Copy page title and url Copy page title and url
ID mcnddmglmjbomnfgkehnnblncllkaedm
URL Oficial https://chromewebstore.google.com/detail/copy-page-title-and-url/mcnddmglmjbomnfgkehnnblncllkaedm
Descrição Add a context menu item to copy page title (or selected text) and url to clipboard.
Tamanho do Arquivo 9.86 KB
Contagem de Instalações 2,615
Versão Atual 1.3
Última Atualização 2018-01-26
Data de Publicação 2018-01-26
Classificação 4.00/5 Total de 11 Avaliações
Desenvolvedor Marek Jedliński
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Copy page title and url",
    "short_name": "Copy title and url",
    "description": "Add a context menu item to copy page title (or selected text) and url to clipboard.",
    "version": "1.3",
    "homepage_url": "https:\/\/github.com\/marekjedlinski\/webext-copy-title-url",
    "author": "Marek Jedli\u0144ski",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icons\/copy_title_and_url.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "clipboardWrite"
    ],
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}