Inspect and view changes in Bookmark Save 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": "Bookmark Save",
"version": "1.2",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"activeTab",
"downloads",
"storage",
"tabs",
"identity",
"offscreen"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16_inactive.png",
"48": "icon48_inactive.png",
"128": "icon128_inactive.png"
}
},
"content_scripts": [
{
"matches": [
"https://x.com/i/bookmarks"
],
"js": [
"content.js"
]
}
],
"oauth2": {
"client_id": "430772096301-4kpnpsgc4tclhvd9frenk8o9fnnqh6jf.apps.googleusercontent.com",
"scopes": [
"openid",
"email",
"profile"
]
}
}