First Mention

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

Was ist First Mention?

First Mention ist eine Chrome-Erweiterung, die von https://danstillman.com entwickelt wurde, und ihr Hauptmerkmal ist "See the first time a name was mentioned in the article you’re reading with a single click".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

First Mention-Erweiterungs-CRX-Datei herunterladen

Laden Sie First Mention-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Offizielle URL https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Beschreibung See the first time a name was mentioned in the article you’re reading with a single click
Dateigröße 147 KB
Installationsanzahl 63
Aktuelle Version 1.0.7
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler https://danstillman.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://danstillman.com/firstmention/
Hilfeseite URL https://danstillman.com/firstmention/
Unterstützte Sprachen 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": [
        ""
    ]
}