Inspect and view changes in Applicat 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": "Applicat",
"version": "1.0",
"description": "Speed up job applications πΈπ§βπ»π Applicat lets you easily get cover letter AI prompts and quickly fill in your details for job applications.",
"author": "Oscar Saharoy",
"homepage_url": "https://github.com/OscarSaharoy/applicat",
"icons": {
"96": "assets/icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"applicat.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/icon.svg",
"assets/x.svg",
"assets/settings.svg"
],
"matches": [
"*://*/*"
]
}
],
"action": {
"default_icon": {
"96": "assets/icon.png"
},
"default_title": "Toggle Applicat UI"
},
"background": {
"scripts": [
"applicat-background.js"
],
"type": "module"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "settings.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{3ff8f86c-c18b-4d86-b2d1-c15e503c2359}",
"strict_min_version": "58.0"
}
}
}