First Mention

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

¿Qué es First Mention?

First Mention es una extensión de Chrome desarrollada por https://danstillman.com, y su función principal es "See the first time a name was mentioned in the article you’re reading with a single click".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión First Mention

Descarga archivos de extensión First Mention en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
URL Oficial https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Descripción See the first time a name was mentioned in the article you’re reading with a single click
Tamaño del Archivo 147 KB
Cantidad de Instalaciones 63
Versión Actual 1.0.7
Última Actualización 2019-03-08
Fecha de Publicación 2019-03-08
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador https://danstillman.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://danstillman.com/firstmention/
URL de la Página de Ayuda https://danstillman.com/firstmention/
Idiomas Soportados 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": [
        ""
    ]
}