Расширенные возможности для сайта multator.ru
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": "Multator.Tools",
"version": "1.0.1.495",
"description": "Расширенные возможности для сайта multator.ru",
"icons": {
"16": "M16.png",
"32": "M32.png",
"48": "M48.png",
"128": "M128.png"
},
"web_accessible_resources": [
"images/*.png",
"*.gif",
"*.html",
"*.js",
"*.css"
],
"content_scripts": [
{
"matches": [
"*://*.multator.ru/*"
],
"js": [
"jquery-2.1.1.min.js",
"content.js"
],
"css": [
"content.css"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"permissions": [
"storage",
"http://*.multator.ru/*"
],
"browser_action": {
"default_title": "Multator.Tools",
"default_icon": "M48.png",
"default_popup": "popup.html"
}
}