-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (28 loc) · 963 Bytes
/
manifest.json
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
{
"name": "GTM variables move",
"version": "0.0.0.8",
"description": "Moves Userdefined variables before builtinvariables in GTM variables view. Enables save on Crtl+s and preview tags on Ctrl+P.",
"manifest_version": 3,
"author": "Bendik Knapstad",
"background": {
"service_worker": "background.js"
},
"permissions": [
"activeTab", "storage", "scripting","tabs"],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [ "https://tagmanager.google.com/","https://marketingplatform.google.com/"],
"content_scripts": [
{
"matches": [
"https://tagmanager.google.com/*",
"https://marketingplatform.google.com/*"
],
"js": ["background.js"],
"run_at": "document_end"
}],
"icons": { "16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png" }
}