Create Link

Copy current page URL to clipboard in various formats.

O que é Create Link?

Create Link é uma extensão do Chrome desenvolvida por ku, e sua principal característica é "Copy current page URL to clipboard in various formats.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Create Link

Baixe arquivos de extensão Create Link 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

                        (Tested on OSX, WindowsXP, Windows7/64bit)
Make HTML link tag easily like Firefox addon Make Link.

Copy current page title and URL to clipboard in various formats.
*plain text ([page title] [page URL])
*HTML link ([page title]
*markdown
*mediawiki

In extension options page, you can configure formats and shortcut key.

Source code is available at http://github.com/ku/CreateLink
Tweet @ku if something is wrong with Create Link                    

Informações Básicas da Extensão

Nome Create Link Create Link
ID gcmghdmnkfdbncmnmlkkglmnnhagajbm
URL Oficial https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm
Descrição Copy current page URL to clipboard in various formats.
Tamanho do Arquivo 32.25 KB
Contagem de Instalações 40,175
Versão Atual 0.5.7
Última Atualização 2022-01-12
Data de Publicação 2017-07-25
Classificação 4.25/5 Total de 166 Avaliações
Desenvolvedor ku
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://twitter.com/ku/
URL da Página de Ajuda http://github.com/ku/CreateLink
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Create Link",
    "version": "0.5.7",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/service-worker.js"
    },
    "action": {
        "default_icon": "icon64.png",
        "default_title": "Create Link",
        "default_popup": "popup.html"
    },
    "description": "Copy current page URL to clipboard in various formats.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "32": "icon32.png",
        "64": "icon64.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "css": [],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "commands": {
        "current-tab-link": {
            "description": "Current tab in default format"
        }
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "permissions": [
        "contextMenus",
        "storage",
        "clipboardWrite"
    ]
}