Unread Cats

Link up your unread emails with cat videos.

Unread Catsとは何ですか?

Unread Catsはmattvisco510によって開発されたChromeの拡張機能で、その主な機能は「Link up your unread emails with cat videos.」です。

拡張機能のスクリーンショット

screenshot

Unread Cats拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        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
Eメール [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"
        ]
    }
}