diff --git a/automatic/ietab-chrome/README.md b/automatic/ietab-chrome/README.md new file mode 100644 index 000000000..6ff1877ef --- /dev/null +++ b/automatic/ietab-chrome/README.md @@ -0,0 +1,36 @@ +[![](https://img.shields.io/chocolatey/v/ietab-chrome?color=green&label=ietab-chrome)](https://chocolatey.org/packages/ietab-chrome) [![](https://img.shields.io/chocolatey/dt/ietab-chrome)](https://chocolatey.org/packages/ietab-chrome) + +## IE Tab for Chrome + +![Screenshot of IE Tab for Chrome](https://lh3.googleusercontent.com/jBcRJhr62UYVgLkFZUsOlHwk0EiHdBC75QcWJrbHUMb-CR7jDnauqS7uY4clY-w6-wyHl6wE_g=s640-h400-e365-rw) + +###Display web pages using IE within Chrome. Use Java, Silverlight, ActiveX, Sharepoint, and more. A "Top 10" extension since 2009! +. +Top 10 Chrome extension since 2009! + +-- WINDOWS ONLY -- WINDOWS ONLY -- + +IE Tab exactly emulates IE by using the IE rendering engine directly within Chrome. This will enable you to use ActiveX controls and test your web pages with different versions of IE (IE6, IE7, IE8, or IE9). + +-- FEATURES -- + +* Create a list of URLs that will automatically open in IE Tab + +* Group Policy support for enterprise deployments + +* Securely use the old IE rendering engine + +* Edit Sharepoint documents instead of opening read-only + +* Use Java, Silverlight, and ActiveX in Chrome seamlessly + +####PACKAGING NOTE: This installs no software. It installs a registry key for the extention that Chrome will see and then ask you for permission to enable the extention if you are in Chrome or on the next run. Chrome will install the latest version of the extention. The mentioned version is the version at time of packaging, you can ignore it. Chrome will handle updates to the extention. + +--- + +### Package-specific issue +If this package isn't up-to-date for some days, [Create an issue](https://github.com/tunisiano187/Chocolatey-packages/issues/new/choose) + +Support the package maintainer and [![Patreon](https://cdn.jsdelivr.net/gh/tunisiano187/Chocolatey-packages@d15c4e19c709e7148588d4523ffc6dd3cd3c7e5e/icons/patreon.png)](https://www.patreon.com/tunisiano) + +--- diff --git a/automatic/ietab-chrome/ietab-chrome.nuspec b/automatic/ietab-chrome/ietab-chrome.nuspec new file mode 100644 index 000000000..c24f7ec21 --- /dev/null +++ b/automatic/ietab-chrome/ietab-chrome.nuspec @@ -0,0 +1,46 @@ + + + + ietab-chrome + 10.1.11.1 + IE Tab for Chrome + ietab.net + bcurran3 + https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd + https://lh3.googleusercontent.com/_UAdMqAA6PRbpL7ozSL3dH34l3uNYzOlX8uJ7lsz2TAfRzHNI9FHYuCNHhTfaXhmnnc1mNmHbg=s26-h26-e365-rw + false + ![Screenshot of IE Tab for Chrome](https://lh3.googleusercontent.com/jBcRJhr62UYVgLkFZUsOlHwk0EiHdBC75QcWJrbHUMb-CR7jDnauqS7uY4clY-w6-wyHl6wE_g=s640-h400-e365-rw) + +###Display web pages using IE within Chrome. Use Java, Silverlight, ActiveX, Sharepoint, and more. A "Top 10" extension since 2009! +. +Top 10 Chrome extension since 2009! + +-- WINDOWS ONLY -- WINDOWS ONLY -- + +IE Tab exactly emulates IE by using the IE rendering engine directly within Chrome. This will enable you to use ActiveX controls and test your web pages with different versions of IE (IE6, IE7, IE8, or IE9). + +-- FEATURES -- + +* Create a list of URLs that will automatically open in IE Tab + +* Group Policy support for enterprise deployments + +* Securely use the old IE rendering engine + +* Edit Sharepoint documents instead of opening read-only + +* Use Java, Silverlight, and ActiveX in Chrome seamlessly + +####PACKAGING NOTE: This installs no software. It installs a registry key for the extention that Chrome will see and then ask you for permission to enable the extention if you are in Chrome or on the next run. Chrome will install the latest version of the extention. The mentioned version is the version at time of packaging, you can ignore it. Chrome will handle updates to the extention. + IE Tab for Chrome extension + updated to new install method + ie tab ietab chrome extension + https://github.com/bcurran3/ChocolateyPackages/tree/master/ietab-chrome + + + + + + + + diff --git a/automatic/ietab-chrome/tools/ChocolateyInstall.ps1 b/automatic/ietab-chrome/tools/ChocolateyInstall.ps1 new file mode 100644 index 000000000..ab604e5b4 --- /dev/null +++ b/automatic/ietab-chrome/tools/ChocolateyInstall.ps1 @@ -0,0 +1,17 @@ +$bits = Get-ProcessorBits +$packageName = 'ietab-chrome' +$extensionID = 'hehijbfgiekmjfkfjpbkbammjbdenadd' +if ($bits -eq 64) + { + if (Test-Path -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID") + { + Write-Host "Extension already installed." -foreground "magenta" –backgroundcolor "blue" + } else { + New-Item -Force -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID" | out-null + New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID\" -Name "update_url" -Value "https://clients2.google.com/service/update2/crx" | out-null + New-ItemProperty -Path "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID\" -Name "ChocolateyPackageName" -Value "$packageName" | out-null + } + } else { + New-Item -Force -Path "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID" | out-null + New-ItemProperty -Path "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID\" -Name "update_url" -Value "https://clients2.google.com/service/update2/crx" | out-null + } diff --git a/automatic/ietab-chrome/tools/ChocolateyUninstall.ps1 b/automatic/ietab-chrome/tools/ChocolateyUninstall.ps1 new file mode 100644 index 000000000..10e1966b4 --- /dev/null +++ b/automatic/ietab-chrome/tools/ChocolateyUninstall.ps1 @@ -0,0 +1,9 @@ +$bits = Get-ProcessorBits +$packageName = 'ietab-chrome' +$extensionID = 'hehijbfgiekmjfkfjpbkbammjbdenadd' + +if ($bits -eq 64) { + Remove-Item "HKLM:\SOFTWARE\Wow6432node\Google\Chrome\Extensions\$extensionID" -Force -ErrorAction SilentlyContinue | out-null + }else{ + Remove-Item "HKLM:\SOFTWARE\Google\Chrome\Extensions\$extensionID" -Force -ErrorAction SilentlyContinue | out-null +} diff --git a/tools/Check/exclude.txt b/tools/Check/exclude.txt index 601e4602f..15c658786 100644 --- a/tools/Check/exclude.txt +++ b/tools/Check/exclude.txt @@ -145,3 +145,4 @@ xmeters zimbra-desktop zona ietab-chrome +ietab-chrome