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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces Valentines day posts from imgur with the money cat..."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Imgur Valentine's Day Replacer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}