Fame: Replace Celebrity Names

An example of replacing names using a browser extension

什么是Fame: Replace Celebrity Names?

Fame: Replace Celebrity Names是由Heather Akers-Healy开发的Chrome扩展程序,该扩展的主要功能是“An example of replacing names using a browser extension”。

扩展截图

screenshot

下载Fame: Replace Celebrity Names扩展crx文件

下载Fame: Replace Celebrity Names扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    ]
}