Fame: Replace Celebrity Names

An example of replacing names using a browser extension

Fame: Replace Celebrity Names là gì?

Fame: Replace Celebrity Names là một tiện ích mở rộng Chrome được phát triển bởi Heather Akers-Healy, và tính năng chính của nó là "An example of replacing names using a browser extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fame: Replace Celebrity Names

Tải xuống các tệp mở rộng Fame: Replace Celebrity Names dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fame: Replace Celebrity Names Fame: Replace Celebrity Names
ID afdjhelhghccihihpcimafhclbamhadj
URL Chính Thức https://chrome.google.com/webstore/detail/fame-replace-celebrity-na/afdjhelhghccihihpcimafhclbamhadj
Mô tả An example of replacing names using a browser extension
Kích Thước Tệp 11.4 KB
Số Lần Cài Đặt 14
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2015-06-04
Ngày Phát Hành 2015-06-04
Nhà Phát Triển Heather Akers-Healy
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}