Imgur Valentine's Day Replacer

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

Imgur Valentine's Day Replacer là gì?

Imgur Valentine's Day Replacer là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Replaces Valentines day posts from imgur with the money cat...".

Tải xuống tệp CRX của tiện ích mở rộng Imgur Valentine's Day Replacer

Tải xuống các tệp mở rộng Imgur Valentine's Day 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

                        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.                    

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

Tên Imgur Valentine's Day Replacer Imgur Valentine's Day Replacer
ID hneogcmeohdbecpjecfmpnfpkdkmfjbf
URL Chính Thức https://chromewebstore.google.com/detail/imgur-valentines-day-repl/hneogcmeohdbecpjecfmpnfpkdkmfjbf
Mô tả Replaces Valentines day posts from imgur with the money cat...
Kích Thước Tệp 21.19 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2016-02-05
Ngày Phát Hành 2016-02-05
Nhà Phát Triển Unknown
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": "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\/*"
    ]
}