Inspect and view changes in Selene Modpacker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Selene Modpacker",
"description": "A tool for creating and managing modpacks.",
"author": "Shap_po",
"homepage_url": "https://github.com/shap-po/selene-modpacker",
"version": "1.0.1",
"manifest_version": 3,
"icons": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"permissions": [
"storage",
"unlimitedStorage"
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"*://modrinth.com/*",
"*://*.curseforge.com/*",
"*://curse.nikky.moe/*",
"*://*.forgecdn.net/*"
],
"content_scripts": [
{
"matches": [
"*://modrinth.com/*"
],
"js": [
"js/injectors/modrinth/sync-theme.js"
],
"all_frames": true
},
{
"matches": [
"*://modrinth.com/mod/*"
],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/modrinth/mod.js"
],
"css": [
"style/inject/modrinth.css"
],
"all_frames": true
},
{
"matches": [
"*://modrinth.com/mods*"
],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/modrinth/mods.js"
],
"css": [
"style/inject/modrinth.css"
],
"all_frames": true
},
{
"matches": [
"*://*.curseforge.com/minecraft/mc-mods/*"
],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/curseforge/mod.js"
],
"css": [
"style/inject/curseforge.css"
],
"all_frames": true,
"run_at": "document_start"
},
{
"matches": [
"*://*.curseforge.com/minecraft/mc-mods*"
],
"js": [
"js/storage.js",
"js/cache.js",
"js/injectors/curseforge/mods.js"
],
"css": [
"style/inject/curseforge.css"
],
"all_frames": true,
"run_at": "document_start"
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}