├── .gitattributes ├── .gitignore ├── README.md ├── bin ├── AmazonButton_Discovery.exe ├── AmazonButton_Discovery_160602_XXXX.exe ├── AmazonButton_Discovery_160702_1024.exe ├── AmazonButton_Discovery_160702_2233.exe ├── AmazonButton_Discovery_160711_1114.exe ├── AmazonButton_Discovery_160715_2304.exe ├── AmazonButton_v2.exe ├── AmazonButton_v3.2.exe ├── AmazonButton_v3.3.exe └── AmazonButton_v4.0.exe ├── exp └── notes.txt ├── old ├── AmazonButton.ahk ├── AmazonButton_Discovery 0831 1532.zip ├── AmazonButton_Discovery 0831 1552.zip ├── AmazonButton_v2.exe ├── AmazonButton_v3.ahk └── test.ahk ├── old2 ├── AmazonButton_v3.ahk └── AmazonButton_v3.exe ├── prod ├── AmazonButton_Discovery_160715_2304.zip ├── Readme.md └── old │ ├── Amazon Dash Button Hack 160702 1034.zip │ ├── AmazonButton_Discovery 0901 1853.zip │ ├── AmazonButton_Discovery_160602_XXXX.exe │ ├── AmazonButton_Discovery_160702_2233.zip │ └── AmazonButton_Discovery_160711_1114.zip ├── src ├── AmazonButton_Discovery_160711_1114.ahk ├── AmazonButton_Discovery_1607156_0900.ahk ├── AmazonButton_Discovery_160715_2304.ahk ├── AmazonButton_v3.3.ahk ├── AmazonButton_v4.0.ahk ├── Button Old │ ├── AmazonButton_v3.2.ahk │ ├── AmazonButton_v3.2_061916.ahk │ └── AmazonButton_v3_062516.ahk ├── Discovery Old │ ├── AmazonButton_Discovery_160602_XXXX.ahk │ ├── AmazonButton_Discovery_160602_XXXX_062516.ahk │ ├── AmazonButton_Discovery_160702_1024 070216.ahk │ ├── AmazonButton_Discovery_160702_1024.ahk │ └── AmazonButton_Discovery_160702_2233.ahk ├── msgbox.ahk ├── tping.exe ├── traystuff.ahk └── traytip.ahk └── utils ├── AmazonButton_Discovery.ahk ├── AmazonButton_v2.ahk ├── AmazonButton_vSpacebar.ahk └── Netflix ADB ├── AmazonButton_Discovery.ahk ├── AmazonButton_Discovery.exe ├── AmazonButton_vSpacebar.ahk ├── AmazonButton_vSpacebar.exe └── Netflix ADB Prod ├── AmazonButton_Discovery.exe └── AmazonButton_vSpacebar.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/README.md -------------------------------------------------------------------------------- /bin/AmazonButton_Discovery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_Discovery.exe -------------------------------------------------------------------------------- /bin/AmazonButton_Discovery_160602_XXXX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_Discovery_160602_XXXX.exe -------------------------------------------------------------------------------- /bin/AmazonButton_Discovery_160702_1024.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_Discovery_160702_1024.exe -------------------------------------------------------------------------------- /bin/AmazonButton_Discovery_160702_2233.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_Discovery_160702_2233.exe -------------------------------------------------------------------------------- /bin/AmazonButton_Discovery_160711_1114.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_Discovery_160711_1114.exe -------------------------------------------------------------------------------- /bin/AmazonButton_Discovery_160715_2304.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_Discovery_160715_2304.exe -------------------------------------------------------------------------------- /bin/AmazonButton_v2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_v2.exe -------------------------------------------------------------------------------- /bin/AmazonButton_v3.2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_v3.2.exe -------------------------------------------------------------------------------- /bin/AmazonButton_v3.3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_v3.3.exe -------------------------------------------------------------------------------- /bin/AmazonButton_v4.0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/bin/AmazonButton_v4.0.exe -------------------------------------------------------------------------------- /exp/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/exp/notes.txt -------------------------------------------------------------------------------- /old/AmazonButton.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old/AmazonButton.ahk -------------------------------------------------------------------------------- /old/AmazonButton_Discovery 0831 1532.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old/AmazonButton_Discovery 0831 1532.zip -------------------------------------------------------------------------------- /old/AmazonButton_Discovery 0831 1552.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old/AmazonButton_Discovery 0831 1552.zip -------------------------------------------------------------------------------- /old/AmazonButton_v2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old/AmazonButton_v2.exe -------------------------------------------------------------------------------- /old/AmazonButton_v3.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old/AmazonButton_v3.ahk -------------------------------------------------------------------------------- /old/test.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old/test.ahk -------------------------------------------------------------------------------- /old2/AmazonButton_v3.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old2/AmazonButton_v3.ahk -------------------------------------------------------------------------------- /old2/AmazonButton_v3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/old2/AmazonButton_v3.exe -------------------------------------------------------------------------------- /prod/AmazonButton_Discovery_160715_2304.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/AmazonButton_Discovery_160715_2304.zip -------------------------------------------------------------------------------- /prod/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/Readme.md -------------------------------------------------------------------------------- /prod/old/Amazon Dash Button Hack 160702 1034.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/old/Amazon Dash Button Hack 160702 1034.zip -------------------------------------------------------------------------------- /prod/old/AmazonButton_Discovery 0901 1853.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/old/AmazonButton_Discovery 0901 1853.zip -------------------------------------------------------------------------------- /prod/old/AmazonButton_Discovery_160602_XXXX.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/old/AmazonButton_Discovery_160602_XXXX.exe -------------------------------------------------------------------------------- /prod/old/AmazonButton_Discovery_160702_2233.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/old/AmazonButton_Discovery_160702_2233.zip -------------------------------------------------------------------------------- /prod/old/AmazonButton_Discovery_160711_1114.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/prod/old/AmazonButton_Discovery_160711_1114.zip -------------------------------------------------------------------------------- /src/AmazonButton_Discovery_160711_1114.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/AmazonButton_Discovery_160711_1114.ahk -------------------------------------------------------------------------------- /src/AmazonButton_Discovery_1607156_0900.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/AmazonButton_Discovery_1607156_0900.ahk -------------------------------------------------------------------------------- /src/AmazonButton_Discovery_160715_2304.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/AmazonButton_Discovery_160715_2304.ahk -------------------------------------------------------------------------------- /src/AmazonButton_v3.3.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/AmazonButton_v3.3.ahk -------------------------------------------------------------------------------- /src/AmazonButton_v4.0.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/AmazonButton_v4.0.ahk -------------------------------------------------------------------------------- /src/Button Old/AmazonButton_v3.2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Button Old/AmazonButton_v3.2.ahk -------------------------------------------------------------------------------- /src/Button Old/AmazonButton_v3.2_061916.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Button Old/AmazonButton_v3.2_061916.ahk -------------------------------------------------------------------------------- /src/Button Old/AmazonButton_v3_062516.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Button Old/AmazonButton_v3_062516.ahk -------------------------------------------------------------------------------- /src/Discovery Old/AmazonButton_Discovery_160602_XXXX.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Discovery Old/AmazonButton_Discovery_160602_XXXX.ahk -------------------------------------------------------------------------------- /src/Discovery Old/AmazonButton_Discovery_160602_XXXX_062516.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Discovery Old/AmazonButton_Discovery_160602_XXXX_062516.ahk -------------------------------------------------------------------------------- /src/Discovery Old/AmazonButton_Discovery_160702_1024 070216.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Discovery Old/AmazonButton_Discovery_160702_1024 070216.ahk -------------------------------------------------------------------------------- /src/Discovery Old/AmazonButton_Discovery_160702_1024.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Discovery Old/AmazonButton_Discovery_160702_1024.ahk -------------------------------------------------------------------------------- /src/Discovery Old/AmazonButton_Discovery_160702_2233.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/Discovery Old/AmazonButton_Discovery_160702_2233.ahk -------------------------------------------------------------------------------- /src/msgbox.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/msgbox.ahk -------------------------------------------------------------------------------- /src/tping.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/tping.exe -------------------------------------------------------------------------------- /src/traystuff.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/traystuff.ahk -------------------------------------------------------------------------------- /src/traytip.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/src/traytip.ahk -------------------------------------------------------------------------------- /utils/AmazonButton_Discovery.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/AmazonButton_Discovery.ahk -------------------------------------------------------------------------------- /utils/AmazonButton_v2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/AmazonButton_v2.ahk -------------------------------------------------------------------------------- /utils/AmazonButton_vSpacebar.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/AmazonButton_vSpacebar.ahk -------------------------------------------------------------------------------- /utils/Netflix ADB/AmazonButton_Discovery.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/Netflix ADB/AmazonButton_Discovery.ahk -------------------------------------------------------------------------------- /utils/Netflix ADB/AmazonButton_Discovery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/Netflix ADB/AmazonButton_Discovery.exe -------------------------------------------------------------------------------- /utils/Netflix ADB/AmazonButton_vSpacebar.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/Netflix ADB/AmazonButton_vSpacebar.ahk -------------------------------------------------------------------------------- /utils/Netflix ADB/AmazonButton_vSpacebar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/Netflix ADB/AmazonButton_vSpacebar.exe -------------------------------------------------------------------------------- /utils/Netflix ADB/Netflix ADB Prod/AmazonButton_Discovery.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/Netflix ADB/Netflix ADB Prod/AmazonButton_Discovery.exe -------------------------------------------------------------------------------- /utils/Netflix ADB/Netflix ADB Prod/AmazonButton_vSpacebar.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fiveseven808/AmazonDashButtonHack/HEAD/utils/Netflix ADB/Netflix ADB Prod/AmazonButton_vSpacebar.exe --------------------------------------------------------------------------------