Fame: Replace Celebrity Names

An example of replacing names using a browser extension

Apa itu Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names adalah ekstensi Chrome yang dikembangkan oleh Heather Akers-Healy, dan fitur utamanya adalah "An example of replacing names using a browser extension".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Fame: Replace Celebrity Names

Unduh file ekstensi Fame: Replace Celebrity Names dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
URL Resmi https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Deskripsi An example of replacing names using a browser extension
Ukuran File 11.4 KB
Jumlah Instalasi 14
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2015-06-04
Tanggal Publikasi 2015-06-04
Pengembang Heather Akers-Healy
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}