Inspect and view changes in Fulfil.IO 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": "Fulfil.IO",
"description": "Chrome extension to extend Fulfil functionality to make features available in commonly used sites.",
"version": "3.1",
"manifest_version": 3,
"permissions": [
"activeTab",
"notifications",
"scripting"
],
"host_permissions": [
"https://*.fulfil.io/*",
"https://*.fulfil.app/*"
],
"action": {
"default_title": "Fulfil",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"128": "icon.png"
},
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*.fulfil.io/oauth/authorization-code*"
],
"js": [
"js/inject-auth-code.js"
]
},
{
"matches": [
"https://*.fulfil.io/*",
"https://*.fulfil.app/*"
],
"js": [
"js/inject-fulfil-apps.js"
]
}
],
"externally_connectable": {
"matches": [
"https://*.fulfil.io/*",
"https://*.fulfil.app/*"
]
},
"web_accessible_resources": [
{
"resources": [
"manifest.json"
],
"matches": [
"https://*.fulfil.io/*",
"https://*.fulfil.app/*"
],
"use_dynamic_url": false
}
]
}