Imgur Valentine's Day Replacer

Replaces Valentines day posts from imgur with the money cat...

Imgur Valentine's Day Replacerとは何ですか?

Imgur Valentine's Day ReplacerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Replaces Valentines day posts from imgur with the money cat...」です。

Imgur Valentine's Day Replacer拡張機能のCRXファイルをダウンロード

Imgur Valentine's Day Replacer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        It's valentine's day season for the internet. If you just broke up with someone, and don't want to see posts with valentine's day in them on imgur use this plugin. It will replace the text and image with a cat.                    

拡張機能の基本情報

名前 Imgur Valentine's Day Replacer Imgur Valentine's Day Replacer
ID hneogcmeohdbecpjecfmpnfpkdkmfjbf
公式URL https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf
説明 Replaces Valentines day posts from imgur with the money cat...
ファイルサイズ 21.19 KB
インストール数 17
現在のバージョン 1.0
最終更新日 2016-02-05
公開日 2016-02-05
開発者 Unknown
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Imgur Valentine's Day Replacer",
    "description": "Replaces Valentines day posts from imgur with the money cat...",
    "version": "1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "replace valentine with cats"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/imgur.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "*:\/\/imgur.com\/*",
        "webRequest",
        "tabs",
        "*:\/\/s.imgur.com\/*"
    ]
}