ESmart NOTE and Calculator.
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": "ESmart NOTE",
"short_name": "ESmart NOTE",
"manifest_version": 2,
"description": "ESmart NOTE and Calculator. ",
"version": "1.03",
"icons": {
"16": "Images/icon1.png",
"32": "Images/icon2.png",
"64": "Images/icon3.png",
"128": "Images/icon4.png"
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"clipboardRead",
"clipboardWrite"
],
"background": {
"scripts": [
"/functions/background.js"
]
},
"browser_action": {
"default_title": "ESmart NOTE",
"default_popup": "/HTMLs/popup.html"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/functions/jquery-1.11.3.js",
"/functions/contents.js"
]
}
]
}