Svgmoji

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

什麼是Svgmoji?

Svgmoji是由TwenT7 | Magomedov Said開發的Chrome擴展程式,該擴展的主要功能是“Creates a link to an image for the emoji in the selection”。

擴展截圖

screenshot
screenshot
screenshot

下載Svgmoji擴展crx文件

下載Svgmoji擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Svgmoji Svgmoji
ID fkfpnaflphlcmdjbafoniiaidjcccngh
官方網址 https://chromewebstore.google.com/detail/svgmoji/fkfpnaflphlcmdjbafoniiaidjcccngh
簡介 Creates a link to an image for the emoji in the selection
檔案大小 68.85 KB
安裝次數 38
目前版本 1.7.2
更新時間 2021-09-19
上架時間 2021-01-20
開發者 TwenT7 | Magomedov Said
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/said-m/svgmoji
說明頁面URL https://github.com/said-m/svgmoji/issues
支援的語言 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"
}