forked from imightbeamy/gcal-multical-event-merge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28bf3f0
commit 9ba5680
Showing
1 changed file
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "Google Caladar Mulit-Cal Even Merge", | ||
"description": "Chrome extension that visually merges the same event on multiple Google Calendars into one event with stripes.", | ||
"version": "0.1", | ||
"content_scripts": [ { | ||
"matches": [ | ||
"http://*/*", | ||
"https://*/*" | ||
], | ||
"js": ["jquery-2.1.0.min.js", "events.js"], | ||
"run_at": "document_end" | ||
} | ||
], | ||
"permissions": [ | ||
"https://www.google.com/calendar/*" | ||
], | ||
"manifest_version": 2 | ||
} |