Inspect and view changes in š¯•¸pert 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": "š¯•¸pert",
"description": "Make your š¯•¸ experience better",
"version": "1.2",
"manifest_version": 3,
"action": {
"default_popup": "popup.html",
"default_icon": "/assets/icon128.png"
},
"icons": {
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"web_accessible_resources": [
{
"matches": [
"https://x.com/*",
"https://mobile.x.com/*",
"https://twitter.com/*",
"https://mobile.twitter.com/*"
],
"resources": [
"assets/font/*.ttf"
]
}
],
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https://x.com/*",
"https://twitter.com/*"
],
"js": [
"content.js"
]
}
]
}