-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
24 lines (24 loc) · 1.01 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"manifest_version": 2, // Начиная с Chrome 18 ставим 2, иначе 1 (не поддерживается такое старьё)
"name": "Content-manager features", // Название расширения
"version": "1.2", // Версия расширения
"permissions": [
"tabs",
"webRequest",
"activeTab",
"http://mta.ua/*"
],
"content_scripts": [
{
"matches": ["http://mta.ua/*"],
"js": ["js/jquery.js", "js/jquery-ui.js", "content/copyPaste.js", "content/slidePatch.js", "content/templatesModified.js"],
"css":["css/templates.css"],
"run_at": "document_end"
}
],
"browser_action": {
"default_title": "Content-manager features", // Заголовок, который отображается при наведении
"default_icon": "img/search.png", // Иконка для отображения
"default_popup": "popup.html" // страница (окно), которая будет отображаться при клике на иконку
}
}