Skip to content

Commit

Permalink
Package download ietab-chrome
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tunisiano187 committed May 17, 2024
1 parent a74dfc0 commit 6d4b5d9
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 0 deletions.
36 changes: 36 additions & 0 deletions automatic/ietab-chrome/README.md
Original file line number Diff line number Diff line change
@@ -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)

---
46 changes: 46 additions & 0 deletions automatic/ietab-chrome/ietab-chrome.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ietab-chrome</id>
<version>10.1.11.1</version>
<title>IE Tab for Chrome</title>
<authors>ietab.net</authors>
<owners>bcurran3</owners>
<projectUrl>https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd</projectUrl>
<iconUrl>https://lh3.googleusercontent.com/_UAdMqAA6PRbpL7ozSL3dH34l3uNYzOlX8uJ7lsz2TAfRzHNI9FHYuCNHhTfaXhmnnc1mNmHbg=s26-h26-e365-rw</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>![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.</description>
<summary>IE Tab for Chrome extension</summary>
<releaseNotes>updated to new install method</releaseNotes>
<tags>ie tab ietab chrome extension</tags>
<packageSourceUrl>https://github.com/bcurran3/ChocolateyPackages/tree/master/ietab-chrome</packageSourceUrl>
<dependencies>
<dependency id="googlechrome" />
</dependencies>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
17 changes: 17 additions & 0 deletions automatic/ietab-chrome/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -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
}
9 changes: 9 additions & 0 deletions automatic/ietab-chrome/tools/ChocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 6d4b5d9

Please sign in to comment.