Which Font Is This ?

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

什麼是Which Font Is This ??

Which Font Is This ?是由http://yassershaikh.com開發的Chrome擴展程式,該擴展的主要功能是“A chrome plugin to identify fonts on websites & web pages.”。

擴展截圖

screenshot
screenshot

下載Which Font Is This ?擴展crx文件

下載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
官方網址 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"
    ]
}