Celeb Replacer

Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.

Celeb Replacer là gì?

Celeb Replacer là một tiện ích mở rộng Chrome được phát triển bởi Jamie Farrelly, và tính năng chính của nó là "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Celeb Replacer

Tải xuống các tệp mở rộng Celeb Replacer 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

                        Replaces some well known celebrities such as Kim Jong Un to other celebrities (in this case Kim Kardashian). Can end up being quite funny now and again!

At the moment there aren't too many celebrities covered but if you have any suggestions I'd be more than happy to add them in. Feel free to leave suggestions in the review section or tweet me @Jamie_Farrelly                    

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

Tên Celeb Replacer Celeb Replacer
ID ecefjchkchdojnmjiholejpbccjiklog
URL Chính Thức https://chromewebstore.google.com/detail/celeb-replacer/ecefjchkchdojnmjiholejpbccjiklog
Mô tả Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.
Kích Thước Tệp 35.25 KB
Số Lần Cài Đặt 368
Phiên Bản Hiện Tại 0.0.0.1
Cập Nhật Lần Cuối 2015-01-05
Ngày Phát Hành 2015-01-05
Đánh Giá 2.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Jamie Farrelly
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": "Celeb Replacer",
    "version": "0.0.0.1",
    "description": "Replaces well known celebrities with different celebrity names on every web page you visit, often leading to entertaining results.",
    "permissions": [
        "storage"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19-on.png",
        "default_title": "Toggle Celeb Replacer"
    },
    "content_security_policy": "default-src 'none'; script-src 'self'",
    "options_page": "options.html"
}