-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added freshbooks.com, fixed the version, and arranged the keys in alp…
…habetical order
- Loading branch information
1 parent
7155f6c
commit 652857c
Showing
1 changed file
with
11 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,23 @@ | ||
{ | ||
"manifest_version": 2, | ||
"name": "FreshBooks API Playground", | ||
"version": "3.0", | ||
"background": { | ||
"scripts": ["background.js"] | ||
}, | ||
"browser_action": { | ||
"default_title": "FreshBooks", | ||
"default_icon": "media/leaf.png" | ||
}, | ||
"description": "Easily interact and experiment with the FreshBooks API!", | ||
"icons": {"16": "media/leaf.png", "48": "media/leaf.png", "128": "media/leaf.png"}, | ||
"manifest_version": 2, | ||
"name": "FreshBooks API Playground", | ||
"permissions": ["tabs", | ||
"storage", | ||
"https://*.trunk.2ndsiteinc.com/api/2.1/xml-in", | ||
"https://*.rc.2ndsiteinc.com/api/2.1/xml-in", | ||
"https://*.last-release.2ndsiteinc.com/api/2.1/xml-in", | ||
"https://*.selenium.2ndsiteinc.com/api/2.1/xml-in", | ||
"https://*.freshbooks.com/api/2.1/xml-in", | ||
"https://*.freshbooksdev.com/api/2.1/xml-in", | ||
"https://*.freshbooksapi.com/api/2.1/xml-in"], | ||
"update_url": "http://afn85.webfactional.com/updates.xml", | ||
"browser_action": { | ||
"default_title": "FreshBooks", | ||
"default_icon": "media/leaf.png" | ||
}, | ||
"background": { | ||
"scripts": ["background.js"] | ||
}, | ||
"sandbox": { | ||
"pages": [ | ||
"interact.html" | ||
], | ||
} | ||
"version": "3.0.2" | ||
} |