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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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": [
        ""
    ]
}