Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_AppName__",
"version": "1.0",
"description": "__MSG_AppDescription__",
"manifest_version": 2,
"default_locale": "en",
"content_scripts": [
{
"matches": [
"*:\/\/*.google.com\/*&viewEXTooo=200k*"
],
"run_at": "document_end",
"css": [
"myStyles.css"
],
"js": [
"contentScript.js"
],
"all_frames": true
},
{
"matches": [
"*:\/\/*.google.com\/*&viewEXTooo=200k*&app_s=true*"
],
"run_at": "document_end",
"css": [
"modules\/search\/style.css"
],
"all_frames": true
},
{
"matches": [
"*:\/\/translate.google.com\/*app-translate=true*"
],
"run_at": "document_end",
"css": [
"modules\/translate\/style.css"
],
"all_frames": true
},
{
"matches": [
"*:\/\/mail.google.com\/mail\/mu\/mp\/102*"
],
"run_at": "document_end",
"css": [
"modules\/mail\/style.css"
],
"all_frames": true
},
{
"matches": [
"*:\/\/drive.google.com\/drive\/u\/*\/mobile\/my-drive*viewEXTooo*"
],
"run_at": "document_end",
"css": [
"modules\/drive\/style.css"
],
"all_frames": true
},
{
"matches": [
"*:\/\/keep.google.com\/*viewEXTooo*"
],
"run_at": "document_end",
"css": [
"modules\/keep\/style.css"
],
"all_frames": true
},
{
"matches": [
"*:\/\/*.youtube.com\/*viewEXTooo*"
],
"run_at": "document_end",
"css": [
"modules\/youtube\/style.css"
],
"all_frames": true
},
{
"matches": [
"*:\/\/*.google.com\/maps\/companion?*app-map=true*"
],
"run_at": "document_end",
"css": [
"modules\/map\/map.css"
],
"js": [
"modules\/map\/content.js"
],
"all_frames": true
}
],
"background": {
"scripts": [
"background.js",
"update.js"
]
},
"browser_action": {
"default_popup": "public\/dist\/modules\/search\/search.html",
"default_icon": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
}
},
"icons": {
"16": "images\/icon-16.png",
"32": "images\/icon-32.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"*:\/\/*.google.com\/*",
"*:\/\/*.youtube.com\/*"
]
}