-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chrome extension: Automate manifest.json generation. Provide better i…
…nstructions
- Loading branch information
G. Grau
committed
Mar 10, 2016
1 parent
22f1a99
commit 3e981e1
Showing
6 changed files
with
49 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
{ | ||
"manifest_version": 2, | ||
|
||
"name": "Storyboard", | ||
"short_name": "Storyboard", | ||
"description": "End-to-end, hierarchical, real-time, colorful stories", | ||
"name": "Storyboard DevTools", | ||
"short_name": "Storyboard DevTools", | ||
"description": "Gives you access to end-to-end stories (logs) for Storyboard-equipped applications", | ||
"author": "Guillermo Grau Panea", | ||
"version": "0.0.1", | ||
|
||
"content_scripts": [{ | ||
"matches": ["<all_urls>"], | ||
"js": ["contentScript.js"], | ||
"run_at": "document_start" | ||
}], | ||
|
||
"version": "0.0.3", | ||
"content_scripts": [ | ||
{ | ||
"matches": [ | ||
"<all_urls>" | ||
], | ||
"js": [ | ||
"contentScript.js" | ||
], | ||
"run_at": "document_start" | ||
} | ||
], | ||
"background": { | ||
"scripts": ["background.js"], | ||
"scripts": [ | ||
"background.js" | ||
], | ||
"persistent": false | ||
}, | ||
|
||
"devtools_page": "devTools.html" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters