Inspect and view changes in docFiller 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
{
"manifest_version": 3,
"name": "docFiller",
"version": "1.4.5",
"description": "Automated Google Forms filling web extension using GenAI. Making boring form filling easy!",
"homepage_url": "https://addons.mozilla.org/en-US/firefox/addon/docfiller/",
"icons": {
"64": "assets/icons/icon-form-64.png",
"96": "assets/icons/icon-form-96.png"
},
"developer": {
"name": "rootCircle",
"url": "https://github.com/rootCircle"
},
"permissions": [
"activeTab",
"storage"
],
"host_permissions": [
"http://docs.google.com/forms/d/e/*/viewform",
"https://docs.google.com/forms/d/e/*/viewform"
],
"action": {
"default_popup": "src/popup/index.html",
"default_title": "docFiller"
},
"options_ui": {
"page": "src/options/index.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"http://docs.google.com/forms/*",
"https://docs.google.com/forms/*"
],
"js": [
"src/contentScript/index.js"
]
}
],
"background": {
"scripts": [
"src/background/index.js"
]
},
"browser_specific_settings": {
"gecko": {
"id": "docFiller@rootcircle.github.io",
"strict_min_version": "109.0"
},
"gecko_android": {
"strict_min_version": "120.0"
}
}
}