First Mention

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

Qu'est-ce que First Mention ?

First Mention est une extension Chrome développée par https://danstillman.com, et sa fonction principale est "See the first time a name was mentioned in the article you’re reading with a single click".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension First Mention

Téléchargez les fichiers d'extension First Mention au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
URL Officiel https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Description See the first time a name was mentioned in the article you’re reading with a single click
Taille du Fichier 147 KB
Nombre d'Installations 63
Version Actuelle 1.0.7
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 5.00/5 Total 4 Évaluations
Développeur https://danstillman.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://danstillman.com/firstmention/
URL de la Page d'Aide https://danstillman.com/firstmention/
Langues Prises en Charge 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": [
        ""
    ]
}