Inspect and view changes in Birdtag 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",
"manifest_version": 3,
"name": "Birdtag",
"version": "1.0.2",
"description": "Add persistent custom labels next to display names on X (Twitter).",
"permissions": [
"activeTab",
"storage",
"contextMenus"
],
"host_permissions": [
"https://twitter.com/*",
"https://x.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://twitter.com/*",
"https://x.com/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"icons": {
"128": "birdtag-icon.png"
}
}