mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
11 lines
255 B
Python
11 lines
255 B
Python
from countershape import Page
|
|
|
|
pages = [
|
|
Page("firefox.html", "Firefox"),
|
|
Page("safari.html", "Safari"),
|
|
Page("ie.html", "Internet Explorer"),
|
|
Page("osx.html", "OSX"),
|
|
Page("windows7.html", "Windows 7"),
|
|
Page("ios.html", "IOS"),
|
|
]
|