Removed use of the unfinished privileged OpenWPM instrumentation webext experiment

This commit is contained in:
Fredrik Wollsén 2018-10-28 00:09:28 +03:00
Родитель ff83e7d1c1
Коммит dd382feb3a
5 изменённых файлов: 2 добавлений и 15 удалений

Просмотреть файл

@ -9,8 +9,6 @@ package-lock.json
src/content.js
src/feature.js
# do not lint/format bundled util libraries
src/privileged/openwpm/api.js
src/privileged/openwpm/schema.json
src/privileged/study/api.js
src/privileged/study/schema.json
# makes sure that eslintrc.js gets linted/formatted

Просмотреть файл

@ -8,7 +8,6 @@
},
"dependencies": {
"idb": "^2.0.4",
"openwpm-webext-experiment": "github:mozilla/OpenWPM-WebExtension-Experiment#42beb4fead4878c7854022b8a2588271f52050fc",
"openwpm-webext-instrumentation": "github:mozilla/openwpm-webext-instrumentation#master",
"shield-studies-addon-utils": "github:motin/shield-studies-addon-utils#issues-142-and-128-support-pioneer-pipeline"
},
@ -72,7 +71,6 @@
},
"scripts": {
"build": "web-ext build",
"bundle:openwpm": "installOpenWPM src/privileged",
"bundle:studyUtils": "copyStudyUtils src/privileged",
"docformat": "doctoc --title '**Contents**' docs/*.md && prettier '**/*.md' --write",
"eslint": "eslint . --ext jsm,js,json",

Просмотреть файл

@ -11,14 +11,6 @@
},
"default_locale": "en-US",
"experiment_apis": {
"openwpm": {
"schema": "./privileged/openwpm/schema.json",
"parent": {
"scopes": ["addon_parent"],
"script": "./privileged/openwpm/api.js",
"paths": [["openwpm"]]
}
},
"study": {
"schema": "./privileged/study/schema.json",
"parent": {
@ -39,7 +31,6 @@
"background": {
"scripts": [
"studySetup.js",
"openwpmSetup.js",
"feature.js",
"background.js"
]

2
src/privileged/.gitignore поставляемый
Просмотреть файл

@ -1,3 +1,3 @@
# ignore APIs that are maintained elsewhere
study/
openwpm/

Просмотреть файл

@ -13,7 +13,7 @@ const defaultConfig = {
firefox: process.env.FIREFOX_BINARY || "nightly",
browserConsole: true,
startUrl: ["about:debugging"],
pref: ["shieldStudy.logLevel=All", "openwpm.logLevel=All", "devtools.netmonitor.persistlog=true"],
pref: ["shieldStudy.logLevel=All"],
},
};