schoolbox web extension :)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: update extension icons

Willow d7ce37e0 99a4050b

+7 -5
src/assets/icon-128.png

This is a binary file and will not be displayed.

src/assets/icon-16.png

This is a binary file and will not be displayed.

src/assets/icon-48.png

This is a binary file and will not be displayed.

+3 -3
src/background.js
··· 25 25 // Execute code when first installed 26 26 chrome.notifications.create("tutorial", { 27 27 type: "basic", 28 - iconUrl: "logo.png", 28 + iconUrl: "assets/icon-128.png", 29 29 title: "Thank you for installing Schooltape!", 30 30 message: "Click here to look at the tutorial.", 31 31 priority: 2, ··· 77 77 console.log(`Updated from ${details.previousVersion} to ${thisVersion}!`); 78 78 chrome.notifications.create("updated", { 79 79 type: "basic", 80 - iconUrl: "logo.png", 80 + iconUrl: "assets/icon-128.png", 81 81 title: `Updated from ${details.previousVersion} to ${thisVersion}!`, 82 82 message: "Click here to look at the release notes.", 83 83 priority: 2, ··· 153 153 // Send notification 154 154 chrome.notifications.create("update", { 155 155 type: "basic", 156 - iconUrl: "logo.png", 156 + iconUrl: "assets/icon-128.png", 157 157 title: "Update available!", 158 158 message: `New version: ${latestVersion}\n(Currently installed: ${currentVersion})\nClick here to look at the release notes.`, 159 159 priority: 2,
src/logo.png

This is a binary file and will not be displayed.

+4 -2
src/manifest.json
··· 5 5 "description": "Schooltape is a free, open-source, web extension that allows you to customise the look, feel, and functionality of Schoolbox!", 6 6 "homepage_url": "https://github.com/42willow/schooltape", 7 7 "icons": { 8 - "100": "logo.png" 8 + "16": "assets/icon-16.png", 9 + "48": "assets/icon-48.png", 10 + "128": "assets/icon-128.png" 9 11 }, 10 12 "background": { 11 13 "scripts": ["background.js"] ··· 29 31 } 30 32 ], 31 33 "browser_action": { 32 - "default_icon": "logo.png", 34 + "default_icon": "assets/icon-16.png", 33 35 "default_title": "Toggle Schooltape", 34 36 "default_popup": "options/home/home.html" 35 37 },