Donald to Darth

This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page

什么是Donald to Darth?

Donald to Darth是由jessehmcdonald开发的Chrome扩展程序,该扩展的主要功能是“This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page”。

扩展截图

screenshot

下载Donald to Darth扩展crx文件

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

扩展使用说明

                        Well after hearing about all these politics people are getting bored. It is time to spice things up a bit! The Chrome Extension Changes famous politicians names to Star Wars Characters!                    

扩展基本信息

名称 Donald to Darth Donald to Darth
ID epmmoednmfpdmennmmcedihlcecffdde
官方URL https://chromewebstore.google.com/detail/donald-to-darth/epmmoednmfpdmennmmcedihlcecffdde
简介 This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page
文件大小 7.88 KB
安装次数 66
当前版本 1.4
更新时间 2015-12-19
上架时间 2015-12-19
评分 4.00/5 共4次评分
开发者 jessehmcdonald
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Donald to Darth",
    "description": "This extension changes the name text 'Donald Trump' to 'Darth Vader' on the current page",
    "version": "1.4",
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "https:\/\/www.google-analytics.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}