First Mention

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

Τι είναι το First Mention;

Το First Mention είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://danstillman.com, και η κύρια λειτουργία του είναι "See the first time a name was mentioned in the article you’re reading with a single click".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης First Mention

Λήψη αρχείων επέκτασης First Mention σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα First Mention First Mention
ID fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Επίσημο URL https://chromewebstore.google.com/detail/first-mention/fhfpcaplhkpgkkmpoegbkfoilljbnbbd
Περιγραφή See the first time a name was mentioned in the article you’re reading with a single click
Μέγεθος Αρχείου 147 KB
Αριθμός Εγκαταστάσεων 63
Τρέχουσα Έκδοση 1.0.7
Τελευταία Ενημέρωση 2019-03-08
Ημερομηνία Δημοσίευσης 2019-03-08
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://danstillman.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://danstillman.com/firstmention/
Διεύθυνση URL της Σελίδας Βοήθειας https://danstillman.com/firstmention/
Υποστηριζόμενες Γλώσσες 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": [
        ""
    ]
}