Unread Cats
Link up your unread emails with cat videos.
Unread Cats란 무엇입니까?
Unread Cats은(는) mattvisco510에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Link up your unread emails with cat videos."입니다.
확장 프로그램 스크린샷
Unread Cats 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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" ] } } |