Skip to content

Instantly share code, notes, and snippets.

View msfrisbie's full-sized avatar

Matt Frisbie msfrisbie

View GitHub Profile
@msfrisbie
msfrisbie / metrc-toolkit-privacy-policy.txt
Created May 6, 2022 14:50
Metrc Toolkit Privacy Policy
`PRIVACY NOTICE
Last updated May 06, 2022
@msfrisbie
msfrisbie / manifest.json
Last active January 7, 2023 22:14
1. An SEO-friendly name
{
"name": "ChatGPT Assistant"
}
@msfrisbie
msfrisbie / manifest.json
Created January 7, 2023 22:15
2. An efficient description
{
"description": "Use ChatGPT in search engines, to write emails, and on any website"
}
@msfrisbie
msfrisbie / background.js
Last active January 7, 2023 22:22
3. A post-install action
chrome.runtime.onInstalled.addListener((details) => {
if (details.reason === chrome.runtime.OnInstalledReason.INSTALL) {
chrome.runtime.openOptionsPage();
}
});
@msfrisbie
msfrisbie / background.js
Created January 7, 2023 22:23
4. An uninstall URL
chrome.runtime.setUninstallURL("https://buildingbrowserextensions.com");
@msfrisbie
msfrisbie / manifest.json
Created January 7, 2023 22:29
5. A popup page
{
"action": {
"default_popup": "popup.html"
}
}
@msfrisbie
msfrisbie / manifest.json
Created January 7, 2023 22:32
6. A snazzy icon
{
"icons": {
"16": "icons/codesearch_16x16.png",
"48": "icons/codesearch_48x48.png",
"64": "icons/codesearch_64x64.png",
"128": "icons/codesearch_128x128.png"
}
}