Fame: Replace Celebrity Names

An example of replacing names using a browser extension

What is Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names is a Chrome extension developed by Heather Akers-Healy, and its main feature is "An example of replacing names using a browser extension".

Extension Screenshots

screenshot

Download Fame: Replace Celebrity Names Extension CRX File

Download Fame: Replace Celebrity Names extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
Official URL https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Description An example of replacing names using a browser extension
File Size 11.4 KB
Installation Count 14
Current Version 0.1.0
Last Updated 2015-06-04
Publish Date 2015-06-04
Developer Heather Akers-Healy
Payment Type free
Supported Languages 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"
        }
    ]
}