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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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": [
        ""
    ]
}