Svgmoji

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

Wat is Svgmoji?

Svgmoji is een Chrome-extensie ontwikkeld door TwenT7 | Magomedov Said, en de belangrijkste functie is "Creates a link to an image for the emoji in the selection".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Svgmoji

Download Svgmoji-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Svgmoji Svgmoji
ID fkfpnaflphlcmdjbafoniiaidjcccngh
Officiële URL https://chromewebstore.google.com/detail/svgmoji/fkfpnaflphlcmdjbafoniiaidjcccngh
Beschrijving Creates a link to an image for the emoji in the selection
Bestandsgrootte 68.85 KB
Aantal Installaties 38
Huidige Versie 1.7.2
Laatst Bijgewerkt 2021-09-19
Publicatiedatum 2021-01-20
Ontwikkelaar TwenT7 | Magomedov Said
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/said-m/svgmoji
Help Pagina-URL https://github.com/said-m/svgmoji/issues
Ondersteunde Talen 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"
}