1
0
Fork 0
mirror of https://github.com/Oreolek/TrackMeNot-Chrome.git synced 2024-04-25 21:59:21 +03:00

Firefox compatibility, Makefile

This commit is contained in:
Alexander Yakovlev 2016-12-03 12:03:39 +07:00
parent bc03239bef
commit 4e444ccb2f
40 changed files with 45 additions and 28 deletions

3
Makefile Normal file
View file

@ -0,0 +1,3 @@
all:
rm trackmenot.xpi
zip -r -9 trackmenot.xpi *

0
dhs_keywords.json Executable file → Normal file
View file

0
editor.js Executable file → Normal file
View file

0
images/TMN_header.gif Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

0
images/TMN_logo.gif Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

0
images/left_frame.gif Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 686 B

After

Width:  |  Height:  |  Size: 686 B

0
images/skin/about_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 872 B

After

Width:  |  Height:  |  Size: 872 B

0
images/skin/help_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 801 B

After

Width:  |  Height:  |  Size: 801 B

0
images/skin/info_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

0
images/skin/off_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1 KiB

After

Width:  |  Height:  |  Size: 1 KiB

0
images/skin/on_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 832 B

After

Width:  |  Height:  |  Size: 832 B

0
images/skin/option_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 578 B

After

Width:  |  Height:  |  Size: 578 B

0
images/skin/tmn.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

0
images/skin/tmn_icon.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

0
images/skin/tmn_lg.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 9.7 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

0
images/tobespacer.gif Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 265 B

After

Width:  |  Height:  |  Size: 265 B

0
jquery.js vendored Executable file → Normal file
View file

0
locale/da-DK.properties Executable file → Normal file
View file

0
locale/de-DE.properties Executable file → Normal file
View file

0
locale/en-US.properties Executable file → Normal file
View file

0
locale/fr-FR.properties Executable file → Normal file
View file

0
locale/hr-HR.properties Executable file → Normal file
View file

0
locale/nl-NL.properties Executable file → Normal file
View file

0
locale/pt-BR.properties Executable file → Normal file
View file

0
locale/zh-CN.properties Executable file → Normal file
View file

70
manifest.json Executable file → Normal file
View file

@ -1,28 +1,42 @@
{
"manifest_version": 2,
"name": "TrackMeNot",
"version": "0.8.3",
"icons": { "16": "icon16.png",
"48": "icon32.png"},
"description": "TMN portage on Chrome",
"browser_action": {
"default_icon": "tmn.png",
"default_popup": "tmn_menu.html"
},
"background": {
"scripts": ["trackmenot.js"]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["tmn_search.js"],
"run_at": "document_start",
"all_frames" : true
}
],
"permissions": [
"tabs","https://*/*","http://*/*","webNavigation","storage"
]
}
{
"manifest_version": 2,
"name": "TrackMeNot",
"description": "TMN WebExtension portage",
"version": "0.9.1",
"background": {
"scripts": [
"trackmenot.js"
]
},
"applications": {
"gecko": {
"id": "trackmenot@mrl.nyu.edu",
"strict_min_version": "42.0"
}
},
"options_page": "options.html",
"icons": {
"16": "icon16.png",
"48": "icon32.png"
},
"content_scripts": [
{
"matches": ["http://*/*","https://*/*"],
"js": ["tmn_search.js"],
"run_at": "document_start",
"all_frames" : true
}
],
"browser_action": {
"default_icon": "tmn.png",
"default_title": "TrackMeNot",
"default_popup": "tmn_menu.html"
},
"permissions": [
"storage",
"tabs",
"webNavigation",
"https://*/*",
"http://*/*"
]
}

0
menu-script.js Executable file → Normal file
View file

0
option-script.js Executable file → Normal file
View file

0
options.html Executable file → Normal file
View file

0
package.json Executable file → Normal file
View file

0
stoping-script.js Executable file → Normal file
View file

0
style.css Executable file → Normal file
View file

0
tmn.png Executable file → Normal file
View file

Before

Width:  |  Height:  |  Size: 870 B

After

Width:  |  Height:  |  Size: 870 B

0
tmn_feed.html Executable file → Normal file
View file

0
tmn_menu.html Executable file → Normal file
View file

0
tmn_page.html Executable file → Normal file
View file

0
tmn_search.js Executable file → Normal file
View file

0
tmn_widget.html Executable file → Normal file
View file

0
trackmenot.js Executable file → Normal file
View file

0
widget-script.js Executable file → Normal file
View file