引用文 Maker

貼り付けた文章の先頭に「> 」をつけるよ!

Cos'è 引用文 Maker?

引用文 Maker è un'estensione di Chrome sviluppata da ikezoe-t, e la sua funzione principale è "貼り付けた文章の先頭に「> 」をつけるよ!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione 引用文 Maker

Scarica i file di estensione 引用文 Maker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        入力したテキストの行頭に「>」マークを付けたテキストを表示してくれます。
メーラーやウェブサイトにあるような返信機能をイメージしていただけるとわかりやすいかと思います。
こういった返信機能がないサービスや、一部の文章だけ引用符付けたいときなどにご利用ください。                    

Informazioni di Base sull'Estensione

Nome 引用文 Maker 引用文 Maker
ID aldegdikahllaokkoleebglfonidpcfl
URL Ufficiale https://chromewebstore.google.com/detail/%E5%BC%95%E7%94%A8%E6%96%87-maker/aldegdikahllaokkoleebglfonidpcfl
Descrizione 貼り付けた文章の先頭に「> 」をつけるよ!
Dimensione del File 54.63 KB
Conteggio Installazioni 55
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-02-05
Data di Pubblicazione 2017-04-03
Sviluppatore ikezoe-t
Email [email protected]
Tipo di Pagamento free
Lingue Supportate ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "\u5f15\u7528\u6587 Maker",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "\u8cbc\u308a\u4ed8\u3051\u305f\u6587\u7ae0\u306e\u5148\u982d\u306b\u300c> \u300d\u3092\u3064\u3051\u308b\u3088\uff01",
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png",
        "32": "icon_48.png"
    },
    "browser_action": {
        "default_icon": "icon_48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/libs\/jquery-2.2.2.min.js",
                "js\/libs\/clipboard\/clipboard.min.js",
                "js\/libs\/toast\/jquery.toast.min.js",
                "js\/content.js"
            ],
            "css": [
                "js\/libs\/toast\/jquery.toast.min.css"
            ],
            "run_at": "document_idle"
        }
    ]
}