Unread Cats

Link up your unread emails with cat videos.

Unread Cats क्या है?

Unread Cats mattvisco510 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Link up your unread emails with cat videos."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

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

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

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

                        Unread Cats is part of project created at The School of Ma entitled "Hidden Communications". This chrome extension populates your gmail with cat videos based on how many unread emails you have. Unread Cats aims to encourage the user to not read their emails because the more unread emails they have the more mindless cat videos you receive.                    

एक्सटेंशन की मूल जानकारी

नाम Unread Cats Unread Cats
ID ecilgofgcnaepidijlnogbpofdghkmei
आधिकारिक URL https://chrome.google.com/webstore/detail/unread-cats/ecilgofgcnaepidijlnogbpofdghkmei
विवरण Link up your unread emails with cat videos.
फ़ाइल का आकार 82.41 KB
स्थापना संख्या 12
वर्तमान संस्करण 1.1
अंतिम अपडेट 2016-03-12
प्रकाशन तिथि 2016-03-12
डेवलपर mattvisco510
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Unread Cats",
    "description": "Link up your unread emails with cat videos.",
    "version": "1.1",
    "permissions": [
        "identity",
        "https:\/\/ajax.googleapis.com\/",
        "https:\/\/www.googleapis.com\/*",
        "*:\/\/*.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background\/background.js",
            "background\/background-message-handler.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "http:\/\/mail.google.com\/*"
            ],
            "js": [
                "vendor\/jquery-2.1.4.min.js",
                "vendor\/jquery-ui.min.js",
                "content\/messenger.js",
                "content\/video-container-generator.js",
                "content\/main.js",
                "vendor\/YT.js",
                "vendor\/YTHelper.js"
            ],
            "css": [
                "css\/video-container.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "views\/*.html"
    ],
    "icons": {
        "16": "icons\/cat_icon_16.png",
        "48": "icons\/cat_icon_48.png",
        "128": "icons\/cat_icon_128.png"
    },
    "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/*.google.com https:\/\/www.youtube.com https:\/\/s.ytimg.com; object-src 'self'",
    "oauth2": {
        "client_id": "523156386456-c04vhd7u6p1jr2r8qbnoegunhg7551dh.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/gmail.readonly",
            "https:\/\/www.googleapis.com\/auth\/youtube.readonly"
        ]
    }
}