Accès en 1 clic aux ressources des bibliothèques de l'Université d'Aix-Marseille.
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",
"manifest_version": 2,
"name": "lama",
"short_name": "lama",
"description": "Accès en 1 clic aux ressources des bibliothèques de l'Université d'Aix-Marseille.",
"version": "0.83",
"icons": {
"16": "img/1x.png",
"32": "img/1x.png",
"48": "img/1x.png",
"64": "img/1x.png",
"128": "img/2x.png"
},
"browser_action": {
"default_title": "lama",
"default_popup": "popup.html"
},
"background": {
"scripts": [
"js/vendors/jquery.min.js",
"js/lama/geturls.js",
"js/lama/eventPage.js",
"js/lama/notificationbackground.js",
"js/smash/tabBootstrapbackgroud.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>",
"http://*/*",
"https://*/*"
],
"js": [
"js/vendors/jquery.min.js",
"js/smash/tabBootstrapcontent.js"
],
"css": [
"css/main.css",
"css/xfa.css",
"css/solid.css"
]
}
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"alarms",
"tabs",
"storage",
"*://*/*"
],
"web_accessible_resources": [
"notification.html",
"suggestedsites.html",
"webfonts/*.woff*"
]
}