notemark

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

What is notemark?

notemark is a Chrome extension developed by https://memo.appri.me, and its main feature is "note.mu にマークダウン投稿機能を追加する拡張機能".

Extension Screenshots

screenshot

Download notemark Extension CRX File

Download notemark extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

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

## 最新情報

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

## 不具合報告

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

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

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

Extension Basic Information

Name notemark notemark
ID mnhknkcoflldaaahafobcnjbnaiecepi
Official URL https://chrome.google.com/webstore/detail/notemark/mnhknkcoflldaaahafobcnjbnaiecepi
Description note.mu にマークダウン投稿機能を追加する拡張機能
File Size 317 KB
Installation Count 94
Current Version 0.1.0
Last Updated 2020-01-15
Publish Date 2020-01-15
Rating 5.00/5 Total 1 Ratings
Developer https://memo.appri.me
Email [email protected]
Payment Type free
Privacy Policy Page URL https://memo.appri.me/TanakaSoftwareLab/app-privacy-policy
Supported Languages 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"
}