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
公式URL 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
Eメール [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": [
        ""
    ]
}