Font Highligher

Highlight selected font on the page

什麼是Font Highligher?

Font Highligher是由http://www.ephifonts.com開發的Chrome擴展程式,該擴展的主要功能是“Highlight selected font on the page”。

擴展截圖

screenshot
screenshot
screenshot

下載Font Highligher擴展crx文件

下載Font Highligher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Have you ever wished there was an easier way to find out which fonts are being used on the web pages you visit? Well look no further! Font Highlighter allows you to simply click the icon within your navigation bar and it will display all the fonts within the CSS file. Select any of the listed fonts shown and the extension will then highlight all of the text using the selected font. Click the "Clear" option to remove all of the text highlighting. Simple as 1,2,3!                    

擴展基本資訊

名稱 Font Highligher Font Highligher
ID ohfmeinpoefdciognpnhfljfimpanjac
官方網址 https://chrome.google.com/webstore/detail/font-highligher/ohfmeinpoefdciognpnhfljfimpanjac
簡介 Highlight selected font on the page
檔案大小 84.89 KB
安裝次數 43
目前版本 0.1.0
更新時間 2013-09-17
上架時間 2013-09-12
開發者 http://www.ephifonts.com
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "0.1.0",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "default_locale": "en",
    "homepage_url": "http:\/\/www.aidevs.com\/",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "css": [
                "content.css"
            ],
            "js": [
                "lib\/fontdetect.js",
                "lib\/jquery-2.0.3.js",
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "__MSG_pageActionTitle__",
        "default_popup": "popup.html"
    },
    "minimum_chrome_version": "21.0",
    "offline_enabled": false,
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}