29 lines
569 B
JSON
29 lines
569 B
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Upto",
|
|
"version": "0.1",
|
|
|
|
"description": "Uploads the URL+timestamp to the uptoserver",
|
|
|
|
"icons": {
|
|
"48": "icons/48.png"
|
|
},
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://*.youtube.com/*", "*://*.youtu.be/*"],
|
|
"js": ["test.js"]
|
|
}
|
|
],
|
|
"permissions": ["*://home.lovelynet.net/*", "webRequest"],
|
|
"browser_action": {
|
|
"browser_style": true,
|
|
"default_popup": "popup/choose.html",
|
|
"default_icon": {
|
|
"16": "icons/48.png"
|
|
}
|
|
}
|
|
}
|