Inserts a call-to-action box on Google search results pages that highlights the eLibrary MN website.
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": "eLibrary MN Google Search Box",
"description": "Inserts a call-to-action box on Google search results pages that highlights the eLibrary MN website.",
"content_scripts": [
{
"matches": [
"*://www.google.com/search?*"
],
"js": [
"content.js"
],
"css": [
"elm-callout.css"
]
}
],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"page_action": {
"default_icon": {
"16": "images/elm-logo-16.png",
"32": "images/elm-logo-32.png",
"48": "images/elm-logo-48.png",
"128": "images/elm-logo-128.png"
}
},
"icons": {
"16": "images/elm-logo-16.png",
"32": "images/elm-logo-32.png",
"48": "images/elm-logo-48.png",
"128": "images/elm-logo-128.png"
},
"web_accessible_resources": [
"images/elm-logo.svg",
"callout.html"
],
"version": "1.01",
"manifest_version": 2
}