1
0
mirror of https://github.com/gamaio/lobli.git synced 2024-12-22 19:52:40 +00:00
lobli/lob.li crx/manifest.json
alopexc0de e395ac49e8
Chrome extension for lob.li.
Untested with the API
2014-08-18 20:50:30 -04:00

42 lines
894 B
JSON

{
"name": "lob.li link shortener",
"version": "0.0.1",
"manifest_version": 2,
"description": "lobli shortening and resolving without having to visit lob.li",
"homepage_url": "http://lob.li",
"browser_action": {
"default_icon": "icons/lobli-19.png",
"default_title": "lobli for Chrome"
},
"background": {
"page": "background.html",
"persistent": false
},
"permissions": [
"<all_urls>",
"tabs",
"clipboardWrite",
"contextMenus",
"notifications"
],
"icons": {
"16": "icons/lobli-16.png",
"32": "icons/lobli-32.png",
"48": "icons/lobli-48.png",
"128": "icons/lobli-128.png"
},
"web_accessible_resources": [
"icons/lobli-16.png",
"icons/lobli-19.png",
"icons/lobli-32.png",
"icons/lobli-48.png",
"icons/lobli-128.png"
],
"commands": {
"shortenTab": {
"suggested_key": { "default": "Alt+L" },
"description": "Shortens Current Tab"
}
}
}