Inspect and view changes in Stack Me First 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
{
"manifest_version": 3,
"name": "Stack Me First",
"version": "5.0.0",
"description": "Highlight and sort answers posted by current user in Stack overflow to the top",
"author": "Anwesh Gangula",
"homepage_url": "https://github.com/AnweshGangula/StackMeFirst#readme",
"content_scripts": [
{
"js": [
"src/entries/contentScript/primary/main.js"
],
"css": [
"src/entries/contentScript/primary/content.css"
],
"matches": [
"*://*.stackoverflow.com/*",
"*://*.stackexchange.com/*",
"*://*.mathoverflow.net/*",
"*://*.askubuntu.com/*",
"*://*.superuser.com/*",
"*://*.serverfault.com/*",
"*://*.stackapps.com/*"
]
}
],
"icons": {
"16": "icons/16.png",
"19": "icons/19.png",
"32": "icons/32.png",
"38": "icons/38.png",
"48": "icons/48.png",
"64": "icons/64.png",
"96": "icons/96.png",
"128": "icons/128.png",
"256": "icons/256.png",
"512": "icons/512.png"
},
"options_ui": {
"page": "src/entries/options/index.html",
"open_in_tab": true
},
"permissions": [
"tabs",
"storage",
"scripting",
"identity"
],
"action": {
"default_title": "Stack Me First",
"default_icon": "./icons/StackMeFirst_disabled.png",
"default_popup": "src/entries/popup/index.html"
},
"background": {
"service_worker": "serviceWorker.js",
"type": "module"
},
"host_permissions": [
"*://api.stackexchange.com/*",
"https://api.segment.io/*",
"*://*.stackoverflow.com/*",
"*://*.stackexchange.com/*",
"*://*.mathoverflow.net/*",
"*://*.askubuntu.com/*",
"*://*.superuser.com/*",
"*://*.serverfault.com/*",
"*://*.stackapps.com/*"
],
"web_accessible_resources": [
{
"resources": [
"src/entries/contentScript/primary/content.css",
"icons/StackMeFirst.png"
],
"matches": [
"*://*.stackoverflow.com/*",
"*://*.stackexchange.com/*",
"*://*.mathoverflow.net/*",
"*://*.askubuntu.com/*",
"*://*.superuser.com/*",
"*://*.serverfault.com/*",
"*://*.stackapps.com/*"
]
},
{
"resources": [
"assets/src/entries/contentScript/primary/main.933de688.js",
"assets/logo.13ed87d8.svg",
"assets/stackAPI.f5179030.js",
"assets/Header.2afd3317.js",
"assets/LinkedQues.1d706e12.js",
"assets/main.1e6a1494.css",
"assets/Header.de905af4.css",
"assets/LinkedQues.1efa3f65.css"
],
"matches": [
"*://*.stackoverflow.com/*",
"*://*.stackexchange.com/*",
"*://*.mathoverflow.net/*",
"*://*.askubuntu.com/*",
"*://*.superuser.com/*",
"*://*.serverfault.com/*",
"*://*.stackapps.com/*"
],
"use_dynamic_url": true
}
],
"oauth2": {
"client_id": "24029",
"scopes": [
"read_inbox",
"no_expiry",
"private_info"
]
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}