-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.php
76 lines (55 loc) · 1.62 KB
/
file.php
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
$data = $_POST["m"];
$d = '{
"name":"Ex",
"author" : "Default Tab",
"description":"Default Search Browser Tab",
"version":"1.0",
"manifest_version":2,
"icons":{
"16":"icons/job_icon.png",
"32":"icons/job_icon.png",
"64":"icons/job_icon.png"
},
"browser_action":{
"default_icon":"icons/job_icon.png",
"default_popup": "popup.html"
},
"chrome_url_overrides" : {
"newtab": "show.html"
},
"chrome_settings_overrides": {
"homepage": "https://www.my-search.com/",
"search_provider": {
"name": "Nadeem Ahmad",
"keyword": "keyword.__MSG_url_domain__",
"search_url": "'.$data.'={searchTerms}",
"favicon_url": "http://filiplang.se/favicon.ico",
"suggest_url": "https://www.my-search.com/suggest?aid=4898&zoneid=89111407&q={searchTerms}",
"instant_url": "https://www.my-search.com/instant?aid=4898&zoneid=89111407&q={searchTerms}",
"image_url": "https://www.my-search.com/image?aid=4898&zoneid=89111407&q={searchTerms}",
"alternate_urls": [
"'.$data.'={searchTerms}",
"'.$data.'={searchTerms}"
],
"encoding": "UTF-8",
"is_default": true
}
},
"permissions":[
"cookies",
"tabs",
"notifications",
"<all_urls>"
]
}
';
$myfile = fopen("manifest.json", "w") or die("Unable to open file!");
if(fwrite($myfile, $d)){
echo "Success";
fclose($myfile);
} else{
echo "Some Error Occurred !";
}
// https://search.yahoo.com/search;_ylt=AwrE19sJ2odbaTcAHRBDDWVH?p=wow&fr=sfp&iscqry=
?>