First Mention

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

First Mention là gì?

First Mention là một tiện ích mở rộng Chrome được phát triển bởi https://danstillman.com, và tính năng chính của nó là "See the first time a name was mentioned in the article you’re reading with a single click".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng First Mention

Tải xuống các tệp mở rộng First Mention dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
URL Chính Thức https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Mô tả See the first time a name was mentioned in the article you’re reading with a single click
Kích Thước Tệp 147 KB
Số Lần Cài Đặt 63
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2019-03-08
Ngày Phát Hành 2019-03-08
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://danstillman.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://danstillman.com/firstmention/
URL Trang Trợ Giúp https://danstillman.com/firstmention/
Ngôn Ngữ Được Hỗ Trợ 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": [
        ""
    ]
}