Inspect and view changes in Slack Workspace Organiser 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Slack Workspace Organiser",
"version": "1.1.1",
"manifest_version": 3,
"description": "Organise your Slack sidebar by using a yaml file",
"permissions": [
"storage",
"webRequest"
],
"host_permissions": [
"https://*.slack.com/*"
],
"icons": {
"16": "resources/slack.png",
"48": "resources/slack.png",
"128": "resources/slack.png"
},
"background": {
"service_worker": "dist/background.bundle.js"
},
"action": {
"default_title": "Organise your Slack workspace",
"default_popup": "dist/popup.html"
}
}