Jump to content

Chrome theme maker ! v0.0.0.4 (with 4 customized themes !)


FireFox
 Share

Recommended Posts

Chrome theme maker v0.0.0.4

Update :

Version 0.0.0.2Fixed onhover bug (thanks to MrCreator)Added change theme functionScript improved (thanks to MrCreator)Version 0.0.0.3Minor bugs fixedScript improved (functions)Version 0.0.0.4Edited _ExtractZip function (no dll required)Thanks to corgano, compiled size is now smaller.

Description :

Create your own theme for google chrome, more than 280 pictures !

Screenshot :

Posted Image

Attachments : Previous downloads : 38

Chrome theme maker : Click here

Customized theme(s) : Total downloads : 5

Orange : Click here | Screenshot

Dark : Click here | Screenshot

Blood : Click here | Screenshot

Firefox : Click here | Screenshot

Note : Customized themes are welcome !

Enjoy ! :D

Edited by FireFox
Link to comment
Share on other sites

Wow!! very nice. Also nice GUI.

I love it.

Also work with dev build.

Thanks firefox.

[font="Palatino Linotype"][size="2"]*** The information contained in this post should be considered and certified WORKS ON MY MACHINE ***[/size][/font][font="Palatino Linotype"][size="2"] [/size][/font]
Link to comment
Share on other sites

@everybody

Version 0.0.0.3 available ! (see first post for update)

New themes ! Dark & Blood (created by myself)

Cheers, FireFox.

The blood one is waayyy too pink. lol. Give it more like a maroon. Or can you use an image, not just a color? If so, then get creative.

[left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]

Link to comment
Share on other sites

The blood one is waayyy too pink. lol. Give it more like a maroon. Or can you use an image, not just a color? If so, then get creative.

Yes :D But it means that I will have to work on new themes, but for the moment I'm busy; maybe someone wants to make one ?

Wow, this is awesome! First it didn't work for me and I needed to download and extract the Resource Hacker per Hand, but then it extracted the theme files just fine :D

Strange... :D

If you don't mind I can add support for SRWare Iron.

No problem :D

Cheers, FireFox.

Edited by FireFox
Link to comment
Share on other sites

I got this from Trancexx, and it should work. No external DLL's required. If it does not work then thats because I modified it a little and messed something up, might wanna ask Trancexx for help fixing it.

Func _ExtractZip($sZipFile, $sDestinationFolder, $sFolderStructure = "")

    Local $i
    Do
        $i += 1
        $sTempZipFolder = @TempDir & "\Temporary Directory " & $i & " for " & StringRegExpReplace($sZipFile, ".*\\", "")
    Until Not FileExists($sTempZipFolder) ; this folder will be created during extraction

    Local $oShell = ObjCreate("Shell.Application")

    If Not IsObj($oShell) Then
        Return SetError(1, 0, 0) ; highly unlikely but could happen
    EndIf

    Local $oDestinationFolder = $oShell.NameSpace($sDestinationFolder)
    If Not IsObj($oDestinationFolder) Then
        DirCreate($sDestinationFolder)
;~         Return SetError(2, 0, 0) ; unavailable destionation location
    EndIf

    Local $oOriginFolder = $oShell.NameSpace($sZipFile & "\" & $sFolderStructure) ; FolderStructure is overstatement because of the available depth
    If Not IsObj($oOriginFolder) Then
        Return SetError(3, 0, 0) ; unavailable location
    EndIf

    Local $oOriginFile = $oOriginFolder.Items();get all items
    If Not IsObj($oOriginFile) Then
        Return SetError(4, 0, 0) ; no such file in ZIP file
    EndIf

    ; copy content of origin to destination
    $oDestinationFolder.CopyHere($oOriginFile, 20) ; 20 means 4 and 16, replaces files if asked

    DirRemove($sTempZipFolder, 1) ; clean temp dir

    Return 1 ; All OK!

EndFunc

0x616e2069646561206973206c696b652061206d616e20776974686f7574206120626f64792c20746f206669676874206f6e6520697320746f206e657665722077696e2e2e2e2e

Link to comment
Share on other sites

I got this from Trancexx, and it should work. No external DLL's required. If it does not work then thats because I modified it a little and messed something up, might wanna ask Trancexx for help fixing it.

Good job, its working fine ! :D

I have added this function to the new version :D

@everybody

Version 0.0.0.4 available ! (see first post for update)

Cheers, FireFox.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...