notemark

note.mu にマークダウン投稿機能を追加する拡張機能

Wat is notemark?

notemark is een Chrome-extensie ontwikkeld door https://memo.appri.me, en de belangrijkste functie is "note.mu にマークダウン投稿機能を追加する拡張機能".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie notemark

Download notemark-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

                        notemark (ノートマーク) は、note (https://note.mu/) の記事をマークダウンで投稿できるようにするChrome拡張機能です。

************************************************************************************
[重要] 2020-01-16現在メンテナンスを行っておりません。もしかしたら上手く動かないかもしれませんのでご了承ください。
************************************************************************************

コレを書いている時点(2019-01-24)では、noteではマークダウンが使えません。しかし、どうしてもマークダウンで書きたい!そういう人たち(特にエンジニア関係の人たち)は以外に多いのではないでしょうか?自分もそのひとりです。notemarkはそのような人たちのために開発されました。
マークダウンで記事作成が捗れば、noteという素晴らしいサービスはもっと盛り上がっていくことでしょう。

## 最新情報

最新の仕様などはこちらのnoteをご覧ください:
https://note.mu/akirattii/n/n14db258ebece

## 不具合報告

note側の仕様変更にともない、突如不具合が発生する場合もあります。
こちらのサポートか上記のnoteまでフィードバックをよろしくお願いいたします。

## 開発のモチベーション

皆様の評価だけが開発のモチベーションです。
何卒お手柔らかに前向きな評価をよろしくお願いいたします(^^)                    

Basisinformatie over de Extensie

Naam notemark notemark
ID mnhknkcoflldaaahafobcnjbnaiecepi
Officiële URL https://chrome.google.com/webstore/detail/notemark/mnhknkcoflldaaahafobcnjbnaiecepi
Beschrijving note.mu にマークダウン投稿機能を追加する拡張機能
Bestandsgrootte 317 KB
Aantal Installaties 94
Huidige Versie 0.1.0
Laatst Bijgewerkt 2020-01-15
Publicatiedatum 2020-01-15
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://memo.appri.me
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://memo.appri.me/TanakaSoftwareLab/app-privacy-policy
Ondersteunde Talen ja
manifest.json
{
    "name": "notemark",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "note.mu \u306b\u30de\u30fc\u30af\u30c0\u30a6\u30f3\u6295\u7a3f\u6a5f\u80fd\u3092\u8ffd\u52a0\u3059\u308b\u62e1\u5f35\u6a5f\u80fd",
    "author": "akirattii  (http:\/\/mint.pepper.jp)",
    "permissions": [
        "https:\/\/note.mu\/notes\/*"
    ],
    "icons": {
        "128": "img\/icon.png"
    },
    "web_accessible_resources": [
        "img\/icon.png"
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "https:\/\/note.mu\/notes\/*"
            ],
            "js": [
                "extlib\/jquery\/jquery-3.3.1.min.js",
                "extlib\/bootstrap\/js\/bootstrap.bundle.min.js",
                "extlib\/marked\/marked.min.js",
                "app.bundle.js"
            ],
            "css": [
                "extlib\/bootstrap\/css\/bootstrap.min.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}