diff options
author | Deathamns <deathamns@gmail.com> | 2014-10-17 21:44:19 +0200 |
---|---|---|
committer | Deathamns <deathamns@gmail.com> | 2014-11-09 17:39:12 +0100 |
commit | 5b79bf353647a4dad9d4968d0f246582744f07bc (patch) | |
tree | 06f045f4dfbd188a8f1217c491b185f0d41d6d50 /meta/config.json | |
parent | 96c4e2e2565ffbd7d413ed7721d9610772b03859 (diff) | |
download | uBlock-5b79bf353647a4dad9d4968d0f246582744f07bc.zip uBlock-5b79bf353647a4dad9d4968d0f246582744f07bc.tar.gz uBlock-5b79bf353647a4dad9d4968d0f246582744f07bc.tar.bz2 |
Work on vendor API abstraction, and near complete Safari support
Diffstat (limited to 'meta/config.json')
-rw-r--r-- | meta/config.json | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta/config.json b/meta/config.json new file mode 100644 index 0000000..f5b8010 --- /dev/null +++ b/meta/config.json @@ -0,0 +1,31 @@ +{
+ "name": "µBlock",
+ "clean_name": "ublock",
+ "url": "https://github.com/gorhill/uBlock",
+ "author": "Raymond Hill",
+ "author_email": "rhill@raymondhill.net",
+ "author_www": "http://raymondhill.net/",
+ "version": "0.7.0.7",
+ "def_lang": "en",
+ "vendors": {
+ "crx": {
+ "app_id": "cjpalhdlnbpafiamejdnhcphjbkeiagm",
+ "manifest": "manifest.json",
+ "locales": "_locales",
+ "file_ext": ".crx",
+ "cert_key": "../meta/crx/key.pem"
+ },
+ "safariextz": {
+ "app_id": "net.gorhill.uBlock",
+ "dir": "uBlock.safariextension",
+ "manifest": {
+ "Info": "Info.plist",
+ "Settings": "Settings.plist"
+ },
+ "file_ext": ".safariextz",
+ "developer_identifier": "T7HSFKB9M5",
+ "cert_dir": "../meta/safariextz/certs/",
+ "cert_key": "../meta/safariextz/certs/key.pem"
+ }
+ }
+}
\ No newline at end of file |