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 |
官方網址 | 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" ] } |