New Tab Custom Quote
New motivational quote in every new tab. Or set your own quote
什么是New Tab Custom Quote?
New Tab Custom Quote是由Cheenu Khurana开发的Chrome扩展程序,该扩展的主要功能是“New motivational quote in every new tab. Or set your own quote”。
扩展截图
下载New Tab Custom Quote扩展crx文件
下载New Tab Custom Quote扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
On opening a new tab, a random motivational quote will be shown. You can customise to show your own quote or ToDo task. - Simple, Minimalistic design - Completely free, without ads - Works offline - No account required Want to suggest a quote or have feedback? Simply tweet @cheenukhurana
扩展基本信息
名称 | New Tab Custom Quote |
ID | jlnllcngghpmhmcpfibhhccefpefmknb |
官方URL | https://chromewebstore.google.com/detail/new-tab-custom-quote/jlnllcngghpmhmcpfibhhccefpefmknb |
简介 | New motivational quote in every new tab. Or set your own quote |
文件大小 | 18.86 KB |
安装次数 | 54 |
当前版本 | 1.0 |
更新时间 | 2020-07-04 |
上架时间 | 2020-07-03 |
评分 | 4.50/5 共2次评分 |
开发者 | Cheenu Khurana |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New Tab Custom Quote", "description": "New motivational quote in every new tab. Or set your own quote", "version": "1.0", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/quote_16.png", "32": "images\/quote_32.png", "48": "images\/quote_48.png", "128": "images\/quote_128.png" } }, "icons": { "16": "images\/quote_16.png", "32": "images\/quote_32.png", "48": "images\/quote_48.png", "128": "images\/quote_128.png" }, "chrome_url_overrides": { "newtab": "quote.html" }, "permissions": [ "storage" ] } |