1
0
Fork 0
whats-there/manifest.json

27 lines
526 B
JSON
Raw Permalink Normal View History

2014-06-26 17:09:54 +00:00
{
"manifest_version": 2,
"name": "Whats There",
"description": "Shows nice link previews based on the page's Open Graph tags",
"version": "1.0",
"permissions": [
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"all_frames": true,
2014-07-05 08:04:01 +00:00
"js": [
"background.js"
],
"css": [
"tooltip.css"
],
"matches": [
"\u003Call_urls>"
]
2014-06-26 17:09:54 +00:00
}
]
}