First Mention

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

Что такое First Mention?

First Mention - это расширение Chrome, разработанное https://danstillman.com, и его основная функция - "See the first time a name was mentioned in the article you’re reading with a single click".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения First Mention

Скачайте файлы расширений 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
Электронная почта [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": [
        ""
    ]
}