Inspect and view changes in Foclóir 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
{
"name": "Foclóir",
"description": "A web browser extension to provide a unified search of Irish dictionaries and glossaries",
"version": "0.2.0",
"manifest_version": 2,
"author": "Séamus Ó Ceanainn",
"background": {
"scripts": [
"serviceWorker.js"
]
},
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"browser_specific_settings": {
"gecko": {
"id": "focloir@soceanainn.com"
}
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"permissions": [
"contextMenus",
"storage"
],
"content_scripts": [
{
"matches": [
"*://www.gaois.ie/*"
],
"js": [
"snippets/gaois.js",
"snippet.js"
],
"all_frames": true
},
{
"matches": [
"*://www.potafocal.com/*"
],
"js": [
"snippets/potafocal.js",
"snippet.js"
],
"all_frames": true
},
{
"matches": [
"*://www.teanglann.ie/*"
],
"js": [
"snippets/teanglann.js",
"snippet.js"
],
"all_frames": true
},
{
"matches": [
"*://www.tearma.ie/*"
],
"js": [
"snippets/tearma.js",
"snippet.js"
],
"all_frames": true
}
]
}