First Mention

See the first time a name was mentioned in the article you’re reading with a single click

什麼是First Mention?

First Mention是由https://danstillman.com開發的Chrome擴展程式,該擴展的主要功能是“See the first time a name was mentioned in the article you’re reading with a single click”。

擴展截圖

screenshot
screenshot
screenshot

下載First Mention擴展crx文件

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

擴展使用說明

                        You know when you’re reading something and someone is mentioned who was introduced earlier in the piece but you don’t remember who they are?

With First Mention, instead of scrolling up and down or searching in the page, just click on the name you don’t remember to see it in the original context.                    

擴展基本資訊

名稱 First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
官方網址 https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
簡介 See the first time a name was mentioned in the article you’re reading with a single click
檔案大小 147 KB
安裝次數 63
目前版本 1.0.7
更新時間 2019-03-08
上架時間 2019-03-08
評分 5.00/5 共 4 次評分
開發者 https://danstillman.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://danstillman.com/firstmention/
說明頁面URL https://danstillman.com/firstmention/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "First Mention",
    "description": "See the first time a name was mentioned in the article you\u2019re reading with a single click",
    "author": "Dan Stillman",
    "homepage_url": "https:\/\/danstillman.com\/firstmention\/",
    "version": "1.0.7",
    "icons": {
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "scripts": [
            "xregexp.js",
            "wordBlacklist.js",
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/twitter.com\/*"
            ],
            "css": [
                "first_mention.css"
            ],
            "js": [
                "tooltip.min.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        ""
    ]
}