oneclick-fontchanger

Let you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts.

oneclick-fontchangerคืออะไร?

oneclick-fontchanger เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dreamingblackcat และคุณลักษณะหลักของมันคือ "Let you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts."

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

screenshot

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

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

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

                        A chrome extension that lets you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts(default Ctrl+B and Alt+B).

The extension was originally written to solve the problem of quickly changing between Zawgyi-One and Myanmar Unicode. But you can change to any two fonts via options.

Technical Detail: oneclick-fontchanger changes chrome font settings programmatically. It does/need not change the DOM of the page you are view. So there is almost no or little overhead involved. It works gracefully with facebook pages to which it was originally targeted.

The limitation of this extension is you need to have the fonts you want to change in your system(default settings assumed Zawgyi-One and Noto Sans Myanamar). Also since it does not convert the fonts, you will not see one font rendering correctly while using other font.(But the postualate the developer assumed is no one can look at two text simultaneously.)
So you can just switched to other font by pressing the shortcut for that font. 

Note: For myanmar users who don't have Unicode font or Zawgyi Font. Here are some download links:
   [Zawgyi One](http://zawgyi.googlecode.com/files/ZawgyiOne2008.ttf)
  , [Noto Sans Myanmar](https://www.google.com/get/noto/pkgs/NotoSansMyanmar-unhinted.zip) from google
  ,[Other Myanmar Unicode Fonts](http://www.myanmarlanguage.org/unicode/myanmar-fonts-which-follow-unicode-rules)                    

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

ชื่อ oneclick-fontchanger oneclick-fontchanger
ID lcibcnkknknmafeamdfcjlidodipfffe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/oneclick-fontchanger/lcibcnkknknmafeamdfcjlidodipfffe
คำอธิบาย Let you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts.
ขนาดไฟล์ 55.62 KB
จำนวนการติดตั้ง 523
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2015-01-27
วันที่เผยแพร่ 2015-01-27
คะแนน 4.30/5 รวมทั้งหมด 20 คะแนน
ผู้พัฒนา dreamingblackcat
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "oneclick-fontchanger",
    "version": "0.2",
    "description": "Let you switch between two fonts via keyboard shortcuts. For convnience,you can use 2 keyboard shortcuts.",
    "background": {
        "persistent": true,
        "scripts": [
            "js\/background.js"
        ]
    },
    "author": "dreamingblackcat",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "permissions": [
        "fontSettings",
        "storage"
    ],
    "options_page": "options.html",
    "commands": {
        "first_font": {
            "suggested_key": {
                "windows": "Ctrl+B",
                "mac": "Command+B",
                "linux": "Ctrl+B"
            },
            "description": "Change Font Setting to First Font"
        },
        "second_font": {
            "suggested_key": {
                "windows": "Alt+B",
                "mac": "Alt+B",
                "linux": "Alt+B"
            },
            "description": "Change Font Setting to Second Font"
        }
    },
    "manifest_version": 2
}