Which Font Is This ?

A chrome plugin to identify fonts on websites & web pages.

Which Font Is This ?คืออะไร?

Which Font Is This ? เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://yassershaikh.com และคุณลักษณะหลักของมันคือ "A chrome plugin to identify fonts on websites & web pages."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Which Font Is This ?

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

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

                        Important Note: You need to refresh your page once after installing this extension.

A user friendly way to find out which font, font color or background colors are in use on any website.

For any bug report/suggestion/feedback send me a mail at [email protected]                    

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

ชื่อ Which Font Is This ? Which Font Is This ?
ID obhkckbkndockmajpedihihnplcgchgh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/which-font-is-this/obhkckbkndockmajpedihihnplcgchgh
คำอธิบาย A chrome plugin to identify fonts on websites & web pages.
ขนาดไฟล์ 43.45 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2014-04-09
วันที่เผยแพร่ 2014-04-09
คะแนน 3.18/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา http://yassershaikh.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://yassershaikh.com/plugins/
URL หน้าช่วยเหลือ http://yassershaikh.com/plugins/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2",
    "manifest_version": 2,
    "name": "Which Font Is This ?",
    "description": "A chrome plugin to identify fonts on websites & web pages.",
    "homepage_url": "http:\/\/yassershaikh.com",
    "icons": {
        "128": "logo.png"
    },
    "browser_action": {
        "default_icon": "logo.png",
        "default_popup": "popup.html",
        "default_title": "What Font Is This ?"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js"
            ],
            "css": [
                "whichfontisthis.css"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "http:\/\/localhost.com\/"
    ],
    "web_accessible_resources": [
        "whichfontisthis.css",
        "logo.png"
    ]
}