1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# CookieKeeper - a Mozilla add-on
# (c) 2013-2016 Yvon TANGUY
#
# ***** BEGIN LICENSE BLOCK **********************************************
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# ***** END LICENSE BLOCK **********************************************
#
# Firefox manifest
#
# Common
content cookiekeeper chrome/content/
content cookiekeeper_locales chrome/locale/
skin cookiekeeper classic/1.0 chrome/skin/
# OS specific skins
skin cookiekeeper_os classic/1.0 chrome/skin/unix/
skin cookiekeeper_os classic/1.0 chrome/skin/osx/ os=Darwin
skin cookiekeeper_os classic/1.0 chrome/skin/windows/ os=WinNT
# OS and App specific skins
skin cookiekeeper_app classic/1.0 chrome/skin/unix/app/firefox/
skin cookiekeeper_app classic/1.0 chrome/skin/osx/app/firefox/ os=Darwin
skin cookiekeeper_app classic/1.0 chrome/skin/windows/app/firefox/ os=WinNT
# Locales
locale cookiekeeper en chrome/locale/en/
locale cookiekeeper de chrome/locale/de/
locale cookiekeeper fr chrome/locale/fr/
locale cookiekeeper nl chrome/locale/nl/
locale cookiekeeper ru chrome/locale/ru/
locale cookiekeeper zh-CN chrome/locale/zh-CN/
|