First Mention

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

Cos'è First Mention?

First Mention è un'estensione di Chrome sviluppata da https://danstillman.com, e la sua funzione principale è "See the first time a name was mentioned in the article you’re reading with a single click".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione First Mention

Scarica i file di estensione First Mention in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
URL Ufficiale https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Descrizione See the first time a name was mentioned in the article you’re reading with a single click
Dimensione del File 147 KB
Conteggio Installazioni 63
Versione Corrente 1.0.7
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore https://danstillman.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://danstillman.com/firstmention/
URL della Pagina di Aiuto https://danstillman.com/firstmention/
Lingue Supportate 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": [
        ""
    ]
}