Inspect and view changes in Binary To Decimal 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
{
"version": "1.0",
"name": "Binary To Decimal",
"description": "Binary to Decimal Converter Extension",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"homepage_url": "http://thebestwebtools.com",
"permissions": [
"activeTab"
],
"icons": {
"48": "img/logo48.png"
},
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"side-panel.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"popup.html"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}