Svgmoji

Creates a link to an image for the emoji in the selection

O que é Svgmoji?

Svgmoji é uma extensão do Chrome desenvolvida por TwenT7 | Magomedov Said, e sua principal característica é "Creates a link to an image for the emoji in the selection".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Svgmoji

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

                        Adds buttons to the context menu, that's generates link to svg image for emoji in a selection, or copies the image itself to the clipboard.
Supported sources: Twemoji, Noto Color Emoji, Openmoji, Emojione, JoyPixels.

Examples of use cases:
* Notion.so supports embedding images instead of uploading, so you can use this extension to create a link to an images from your favorite emoji-pack and the paste it to the page as image block or use it as page icon. Because it is embedding, such icons are always in sync with all updates in the pack.
* Designing cards, collages and etc.. Just change "copy mode" to "an image" option, select emoji, apply extension on it and now you can paste an image.                    

Informações Básicas da Extensão

Nome Svgmoji Svgmoji
ID fkfpnaflphlcmdjbafoniiaidjcccngh
URL Oficial https://chromewebstore.google.com/detail/svgmoji/fkfpnaflphlcmdjbafoniiaidjcccngh
Descrição Creates a link to an image for the emoji in the selection
Tamanho do Arquivo 68.85 KB
Contagem de Instalações 38
Versão Atual 1.7.2
Última Atualização 2021-09-19
Data de Publicação 2021-01-20
Desenvolvedor TwenT7 | Magomedov Said
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/said-m/svgmoji
URL da Página de Ajuda https://github.com/said-m/svgmoji/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "permissions": [
        "contextMenus",
        "notifications",
        "storage",
        "https:\/\/raw.githubusercontent.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": ".\/assets\/images\/logo-16.png",
        "128": ".\/assets\/images\/logo-128.png"
    },
    "incognito": "spanning",
    "name": "Svgmoji",
    "version": "1.7.2",
    "author": "Said Magomedov ",
    "description": "Creates a link to an image for the emoji in the selection"
}