Umbrella Check
This extension will remind you to bring umbrella
什么是Umbrella Check?
Umbrella Check是由Guan开发的Chrome扩展程序,该扩展的主要功能是“This extension will remind you to bring umbrella”。
扩展截图
下载Umbrella Check扩展crx文件
下载Umbrella Check扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Click to check if you need to bring your umbrella
扩展基本信息
名称 | |
ID | apfmenbmncbojjljimedeeobbodhopce |
官方URL | https://chrome.google.com/webstore/detail/umbrella-check/apfmenbmncbojjljimedeeobbodhopce |
简介 | This extension will remind you to bring umbrella |
文件大小 | 39.64 KB |
安装次数 | 10 |
当前版本 | 1.2 |
更新时间 | 2016-08-12 |
上架时间 | 2016-08-12 |
评分 | 5.00/5 共1次评分 |
开发者 | Guan |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Umbrella Check", "description": "This extension will remind you to bring umbrella", "version": "1.2", "browser_action": { "default_icon": "umbrella.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.google.com\/*", "http:\/\/ipinfo.io\/*", "https:\/\/query.yahooapis.com\/*" ], "js": [ "jquery.js" ] } ], "background": { "scripts": [ "popup.js", "jquery.js" ] }, "permissions": [ "activeTab", "notifications", "geolocation" ] } |