Fame: Replace Celebrity Names

An example of replacing names using a browser extension

ما هو Fame: Replace Celebrity Names؟

Fame: Replace Celebrity Names هو إضافة Chrome تم تطويرها بواسطة Heather Akers-Healy، والميزة الرئيسية لها هي "An example of replacing names using a browser extension".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Fame: Replace Celebrity Names

قم بتنزيل ملفات الامتداد Fame: Replace Celebrity Names بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        This extension mocks celebrity culture by replacing some A-list celebrity names with the phrase "Someone Better Looking Than You". It also includes code to correct the names of certain transgender individuals.                    

معلومات أساسية عن التمديد

الاسم Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
الوصف An example of replacing names using a browser extension
حجم الملف 11.4 KB
عدد التثبيتات 14
النسخة الحالية 0.1.0
آخر تحديث 2015-06-04
تاريخ النشر 2015-06-04
المطور Heather Akers-Healy
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Fame: Replace Celebrity Names",
    "version": "0.1.0",
    "description": "An example of replacing names using a browser extension",
    "author": "Heather Akers-Healy",
    "browser_action": {
        "default_title": "Use this to open the popup",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "replace.js"
            ],
            "run_at": "document_end"
        }
    ]
}