monospace

Display monospaced and highlighted code blocks instantly in Chrome!

monospaceคืออะไร?

monospace เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tyler Chen และคุณลักษณะหลักของมันคือ "Display monospaced and highlighted code blocks instantly in Chrome!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย monospace

ดาวน์โหลดไฟล์ส่วนขยาย monospace ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Monospace formats code sent through Facebook chat into monospaced, syntax-highlighted, line-numbered code blocks. Additionally monospace will highlight and add line numbers to files viewed in the chrome file viewer. Multiple highlighting themes are included and can be switched in the options menu.

To use monospace simply send code through facebook wrapped with the delimiters set in the options page.

EXAMPLES: 

  - ```for x in range(0:10):
       print(x)```

  - you can also have ```inline code``` 


Notes: 
This is still very much a work in progress. I'm currently looking for bugs and unintended behavior. I'll remove all the console logs once I'm satisfied with its stability.

The UI is still pretty clunky since I haven't spent much time working on that. I'll revamp the options page and the chrome webstore page soon.

By default monospace uses three backticks (like markdown). Monospace will also reverse the start delimiter and use that as the end delimiters unless a custom end delimiter is specified. Pages will need to be refreshed to use the new delimiters.

If there are more than one line breaks in a row, monospace will reduce them to a single line break. This is due to limitations with how Facebook displays messages.

Removing items from the whitelist will prevent monospace from acting on that item. Currently the functionality of the whitelist is very basic.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ monospace monospace
ID bjeojhoaeoiaokmhbhnmnkfehhmmnafg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/monospace/bjeojhoaeoiaokmhbhnmnkfehhmmnafg
คำอธิบาย Display monospaced and highlighted code blocks instantly in Chrome!
ขนาดไฟล์ 92.37 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2015-02-13
วันที่เผยแพร่ 2015-02-13
คะแนน 4.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Tyler Chen
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tchen01/monospace
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "monospace",
    "version": "0.1.0",
    "description": "Display monospaced and highlighted code blocks instantly in Chrome!",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "web_accessible_resources": [
        "app.js",
        "facebook\/*",
        "highlight\/highlight.pack.js",
        "highlight\/styles\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.facebook.com\/*",
                "https:\/\/*.facebook.com\/*"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "facebook\/background.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*.js",
                "*:\/\/*\/*.css",
                "*:\/\/*\/*.py",
                "file:\/\/\/*.js",
                "file:\/\/\/*.css",
                "file:\/\/\/*.py"
            ],
            "css": [
                "main.css"
            ],
            "js": [
                "highlight\/highlight.pack.js",
                "app.js",
                "files.js"
            ]
        }
    ]
}