added icons

master
Keith 2016-04-18 21:57:58 -04:00
parent 4360c89dba
commit 388817942b
4 changed files with 8 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{
"name": "PopTab",
"description": "This extension lets you pop the current tab into a popup.",
"description": "Pop the current tab into a popup or panel.",
"version": "1.0",
"manifest_version": 2,
"background": {
@ -8,8 +8,12 @@
"scripts": ["poptab.js"]
},
"browser_action": {
"default_title": "PopTab",
"default_icon": "icon.png"
"default_title": "Pop tab",
"default_icon": "tab.24.png"
},
"icons": {
"24": "tab.24.png",
"246": "tab.png"
},
"permissions": ["activeTab","tabs"]
}

View File

@ -1,4 +1,4 @@
chrome.browserAction.onClicked.addListener(function(tab) {
chrome.browserAction.onClicked.addListener(function(tab){
chrome.windows.create({
url: tab.url,
type: 'popup'

BIN
tab.24.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

BIN
tab.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB