Skip to content

Commit

Permalink
Polished up the Chrome extension for the Web Store.
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybrown8 committed Oct 24, 2012
1 parent f0863d7 commit 8ab68db
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
Binary file modified WicketSourceForChrome/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions WicketSourceForChrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"manifest_version": 1,
"name": "WicketSource",
"version": "1.0",
"description": "Adds a Developer Tools sidebar with wicket attributes for the selected DOM element.",
"version": "1.1.2",
"description": "Adds a Developer Tools sidebar with Wicket source code location for the selected DOM element.",
"devtools_page": "devtools.html",
"options_page": "options.html",
"icons": {
Expand All @@ -11,6 +12,6 @@
"128": "icon128.png"
},
"permissions": [
"devtools_page", "http://*/*", "https://*/*"
"http://*/*", "https://*/*", "http://localhost/*"
]
}
15 changes: 11 additions & 4 deletions WicketSourceForChrome/notes.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
In Progress:
The WicketSource plugin scans wicket application pages (typically those being worked on
by the developer running the browser), looks for wicketsource="com.mycompany.whatever.MyWicketPanel:35"
type labels, displays a brief html panel in the devtools pane, and its link produces an http request
back to an IDE listener that opens the named source code to that line of the file.

It's a convenience tool for Wicket developers, during development.

Milestones:
11* packaging script / automation
12* cleanup, testing, and documentation
Future:
* Upgrade to manifest v2, fix inline javascript and possibly make the IDE listen on https; set manifest permissions to match.

In Progress:
* Submit to Chrome Web Store.

Done
1* Basic stub app works, displays correct titles. (11/21)
Expand Down
2 changes: 1 addition & 1 deletion wicket-source-demo/src/main/webapp/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ body { margin:0;padding:0;}
z-index : 0;
}
#ft {
position : absolute;
position : float;
bottom : 0;
width : 100%;
height : 59px;
Expand Down

0 comments on commit 8ab68db

Please sign in to comment.