├── .gitattributes ├── .gitignore ├── Assets ├── Fonts │ ├── Roboto_Mono │ │ ├── LICENSE.txt │ │ ├── RobotoMono-Bold.ttf │ │ ├── RobotoMono-BoldItalic.ttf │ │ ├── RobotoMono-Italic.ttf │ │ ├── RobotoMono-Light.ttf │ │ ├── RobotoMono-LightItalic.ttf │ │ ├── RobotoMono-Medium.ttf │ │ ├── RobotoMono-MediumItalic.ttf │ │ ├── RobotoMono-Regular.ttf │ │ ├── RobotoMono-Thin.ttf │ │ └── RobotoMono-ThinItalic.ttf │ ├── Vampyrium Font │ │ ├── AlphabetTranslation.png │ │ ├── README.txt │ │ └── Vampyrium Font.ttf │ └── roboto-hinted │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-ThinItalic.ttf │ │ ├── RobotoCondensed-Bold.ttf │ │ ├── RobotoCondensed-BoldItalic.ttf │ │ ├── RobotoCondensed-Italic.ttf │ │ ├── RobotoCondensed-Light.ttf │ │ ├── RobotoCondensed-LightItalic.ttf │ │ └── RobotoCondensed-Regular.ttf └── Images │ ├── AlphabetTranslation.png │ ├── theme_ntp_attribution.psd │ ├── theme_ntp_attribution_35pxHeigth.psd │ ├── theme_ntp_attribution_40pxHeigth.psd │ ├── theme_ntp_attribution_60pxHeigth.psd │ ├── theme_ntp_attribution_Extreme_Hunt.psd │ ├── theme_ntp_attribution_Vampyrium_Font.png │ └── theme_ntp_attribution_Vampyrium_Font.psd ├── Documentation ├── ChromeWindowDesign.psd └── ThemeCreationGuide.docx ├── LICENSE ├── README.md ├── SampleTheme └── Sample │ └── manifest-sample.json └── Themes ├── ArraxorTheme ├── Arraxor.crx └── Arraxor │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── BloodveldLeecherTheme ├── Bloodveld Leecher.crx └── Bloodveld Leecher │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── ElderDivinationTheme ├── ElderDivination.crx └── ElderDivination │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── FreneskaeTheme ├── Freneskae.crx └── Freneskae │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── HatiSköllTheme ├── HatiSköll.crx └── HatiSköll │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── LordOfVampyriumTheme ├── LordOfVampyrium.crx └── LordOfVampyrium │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── MadeMonsterTheme ├── MadeMonster.crx └── MadeMonster │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── ModCrowTheme ├── ModCrow.crx └── ModCrow │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── NomadTheme ├── Nomad.crx └── Nomad │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json ├── SardominVsZamorakTheme ├── SaradominVsZamorak.crx └── SaradominVsZamorak │ ├── images │ ├── icons │ │ ├── icon128.png │ │ ├── icon16.png │ │ └── icon48.png │ ├── theme_frame.png │ ├── theme_frame_inactive.png │ ├── theme_frame_overlay.png │ ├── theme_frame_overlay_inactive.png │ ├── theme_ntp_attribution.png │ ├── theme_ntp_background1920x1080.png │ ├── theme_tab_background.png │ ├── theme_tab_background_v.png │ ├── theme_toolbar.png │ └── theme_window_control_background.png │ └── manifest.json └── private_keys.rar /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/LICENSE.txt -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Roboto_Mono/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Roboto_Mono/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/Vampyrium Font/AlphabetTranslation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Vampyrium Font/AlphabetTranslation.png -------------------------------------------------------------------------------- /Assets/Fonts/Vampyrium Font/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Vampyrium Font/README.txt -------------------------------------------------------------------------------- /Assets/Fonts/Vampyrium Font/Vampyrium Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/Vampyrium Font/Vampyrium Font.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Black.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Italic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Light.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Medium.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-Thin.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /Assets/Fonts/roboto-hinted/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Fonts/roboto-hinted/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /Assets/Images/AlphabetTranslation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/AlphabetTranslation.png -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution.psd -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution_35pxHeigth.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution_35pxHeigth.psd -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution_40pxHeigth.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution_40pxHeigth.psd -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution_60pxHeigth.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution_60pxHeigth.psd -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution_Extreme_Hunt.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution_Extreme_Hunt.psd -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution_Vampyrium_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution_Vampyrium_Font.png -------------------------------------------------------------------------------- /Assets/Images/theme_ntp_attribution_Vampyrium_Font.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Assets/Images/theme_ntp_attribution_Vampyrium_Font.psd -------------------------------------------------------------------------------- /Documentation/ChromeWindowDesign.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Documentation/ChromeWindowDesign.psd -------------------------------------------------------------------------------- /Documentation/ThemeCreationGuide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Documentation/ThemeCreationGuide.docx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/README.md -------------------------------------------------------------------------------- /SampleTheme/Sample/manifest-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/SampleTheme/Sample/manifest-sample.json -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor.crx -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/ArraxorTheme/Arraxor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ArraxorTheme/Arraxor/manifest.json -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher.crx -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/BloodveldLeecherTheme/Bloodveld Leecher/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/BloodveldLeecherTheme/Bloodveld Leecher/manifest.json -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination.crx -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/ElderDivinationTheme/ElderDivination/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ElderDivinationTheme/ElderDivination/manifest.json -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae.crx -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/FreneskaeTheme/Freneskae/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/FreneskaeTheme/Freneskae/manifest.json -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll.crx -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/HatiSköllTheme/HatiSköll/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/HatiSköllTheme/HatiSköll/manifest.json -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium.crx -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/LordOfVampyriumTheme/LordOfVampyrium/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/LordOfVampyriumTheme/LordOfVampyrium/manifest.json -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster.crx -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/MadeMonsterTheme/MadeMonster/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/MadeMonsterTheme/MadeMonster/manifest.json -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow.crx -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/ModCrowTheme/ModCrow/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/ModCrowTheme/ModCrow/manifest.json -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad.crx -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/NomadTheme/Nomad/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/NomadTheme/Nomad/manifest.json -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak.crx -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/icons/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/icons/icon128.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/icons/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/icons/icon16.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/icons/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/icons/icon48.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame_inactive.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame_overlay.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame_overlay_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_frame_overlay_inactive.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_ntp_attribution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_ntp_attribution.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_ntp_background1920x1080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_ntp_background1920x1080.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_tab_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_tab_background.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_tab_background_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_tab_background_v.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_toolbar.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_window_control_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/images/theme_window_control_background.png -------------------------------------------------------------------------------- /Themes/SardominVsZamorakTheme/SaradominVsZamorak/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/SardominVsZamorakTheme/SaradominVsZamorak/manifest.json -------------------------------------------------------------------------------- /Themes/private_keys.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrick-Batenburg/GoogleChromeThemeCreationGuide/HEAD/Themes/private_keys.rar --------------------------------------------------------------------------------