First Mention

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

Co je First Mention?

First Mention je rozšíření Chrome vyvinuté https://danstillman.com, a jeho hlavní funkcí je „See the first time a name was mentioned in the article you’re reading with a single click“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření First Mention

Stáhněte si soubory rozšíření First Mention ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Oficiální URL https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Popis See the first time a name was mentioned in the article you’re reading with a single click
Velikost souboru 147 KB
Počet instalací 63
Aktuální Verze 1.0.7
Poslední Aktualizace 2019-03-08
Datum Vydání 2019-03-08
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář https://danstillman.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://danstillman.com/firstmention/
URL Stránky Nápovědy https://danstillman.com/firstmention/
Podporované Jazyky 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": [
        ""
    ]
}