Copy Link/Tab Name and URL

Copy the name and URL of a link or a Tab.

O que é Copy Link/Tab Name and URL?

Copy Link/Tab Name and URL é uma extensão do Chrome desenvolvida por https://sites.google.com/site/copylinknameandurl, e sua principal característica é "Copy the name and URL of a link or a Tab.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Copy Link/Tab Name and URL

Baixe arquivos de extensão Copy Link/Tab Name 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

                        It adds a command to the context munu on the link and copies the link's name(source anchor) and URL with the plain text format. It also copies the tab's titile and url.
So this extension makes it very easy to share the links with IM, Email, blog and so on.

It has a Preference Page to configure the Format.                    

Informações Básicas da Extensão

Nome Copy Link/Tab Name and URL Copy Link/Tab Name and URL
ID noakklbbencpgcahamhocalnepfjeeok
URL Oficial https://chromewebstore.google.com/detail/copy-linktab-name-and-url/noakklbbencpgcahamhocalnepfjeeok
Descrição Copy the name and URL of a link or a Tab.
Tamanho do Arquivo 11.64 KB
Contagem de Instalações 236
Versão Atual 3.1
Última Atualização 2021-04-01
Data de Publicação 2020-02-26
Desenvolvedor https://sites.google.com/site/copylinknameandurl
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wadefelix/copylinktabnameandurl
Idiomas Suportados en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "3.1",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/wadefelix\/copylinktabnameandurl",
    "author": "Ren Wei",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "16": "icons\/page-16.png",
        "32": "icons\/page-32.png",
        "48": "icons\/page-48.png"
    },
    "options_ui": {
        "page": "options.html"
    }
}