New plugin in 10.4.7

hey guys,
I found this discussion somewhere else, but no one came up with an answer: any takers here? (PS, I'm totally ignorant of what it is, just copying and pasting):
The very, very recently released Mac OS X 10.4.7 update installs something called "VerifiedDownloadPlugin.plugin" inside /Library/Internet Plug-Ins/
...[snip]...
and then someone theorized: "It's probably for the new feature of 10.4.7 that verifies that Apple-featured Dashboard widgets you download are intact when you install them. It's in the documentation for the update."
...[snip again]...
however, according to another person, "It seems to do nothing. The executable file has 20 instructions in its __TEXT section. There are no included symbols. rsrc file is a couple string resources that repeat "Verified Download Plugin" over and over."
any ideas?
thanks,
s
iMac 2.0G5   Mac OS X (10.4.6)  

Update: this looks like a plausible answer:
he code in the internet plugin (in the __TEXT section) is setting up two function pointers to dynamically relocated (or dynamically generated) code. See Listing 2 on this page for a commented example.
The __DATA section contains what I think are two dummy words that are replaced at runtime with branches to the new locations, and a third dummy word that is replaced with a data pointer.
When executed, the code will figure out the position-dependent memory location of the word that's position-independently located at 0x1004 (the first word of the data section) and jump to it with $r12 pointing to the dummy data word. The second function does the same, but uses the second word of the data section and has no parameter.
In other words, here's the __DATA section:
struct {
void *func1Parameter;
void * (*func1)();
void * (*func2)();
I'd guess that the use of all of this is to allow VerifiedDownloadAgent to be used from within the same application context as Safari.

Similar Messages

  • How to use existing plugin transformation from a new plugin

    Hi,
    Begginer's question:
    I use the SDK examples for a new plugin I want to write.
    I want to invoke several commands of an existing plugins from my plugin.
    For example I define a new Effect Control: My Opacity. For start I would like to invoke the functionality of Transform->Opacity.
    Now, I saw in the example Projector that I can invoke
    suites.EffectSuite2()->AEGP_ApplyEffect
    Is this the way to do it?
    How can I pass the parameter that the user gave me to the needed effect?
    I guess rhere is a quicker way to find the effect by name instead of iteration on all available as done in the Projector example.
    Thanx in advance,
    Miro

    Hello miro A, welcome to the forum!
    i'm having some trouble understanding the process you're creating, so i have a couple of questions:
    1. is your effect a layer effect? (like "gaussian blur")
    or is it a general plug-in? (like layer->transform->fit vertical, or the "wiggler" panel)
    the two (effects and AEGPs) differ in many ways and will determine the way you approach the problem.
    2. when you say "the parameter that the user gave me", what do you mean?
    is there a standard slider on your effect that the user can manipulate?
    in the mean time i'll do my best to answer you questions:
    yes, suites.EffectSuite2()->AEGP_ApplyEffect() is the way to add a new effect to a layer,
    BUT if your effect is a layer effect (again, like "curves"), then you're in for some major problems.
    layer effects can't add new effects to the same layer as themselves.
    it causes errors and crashes, because by the time your effect returns from it's call AE discovers that the layer has changed in the mean time (you added an effect), and AE doesn't cope with that change well. at all.
    no, there is no way of knowing what effect to access on a layer without iterating through them at some point in time.
    to access an effect you must retrieve an effectRef.
    to get an effectRef you must call it's index on a layer, along with the identifier of a specific layer. (layerH and effect index on that layer (say... 3rd effect))
    to know the index, you must iterate though the effects on a layer and check each one for it's name or matchName.
    you don't have to do it every time.
    you can store the index for later use, but keep in mind that the user might move effects around,
    so make smart decisions.
    wait. it gets worse.
    now you want to affect a parameter on a different effect.
    that can be done using streamRefs. these refer to the different parameters on all effects.
    once you obtain the streamRef of a wanted parameter, you can read it or write to it.
    to get a param's stream ref on an effect for which you already have an effectRef, you must know it's index in the effect. (for example, the "blurriness" on "gaussian blur" is 1 (never 0. zero is the input buffer))
    the index is not always what it seems. there may be hidden params (and other stuff in the way).
    the param index might change if the vendor of the other effect decides to change it.
    in short:
    yes, it's as complex as you feared it would be, and as you saw in the "projector" sample.

  • New Plugin for Firefox- Maps Blank

    I just went to maps.ovi.com and got offered a new plugin for Firefox. It seemed to install OK and now the website - which used to take about 5 mins to startup for me - starts up in seconds. Almost as fast as Google maps!
    SNAG - the map area is blank. I can't see any maps!
    Is it just me?
    Solved!
    Go to Solution.

    Malicious software had switched my Internet Options to use a proxy server. Firefox showed the Maps website and navigation perfectly but the map did not download. Simply disabling the "Use a proxy server" in "Connections" fixed it. Since I do not use Internet Explorer I had not noticed this!

  • ANN: WS Utilities (new plugin) released

    Hi,
    We've just released a new plugin called West Street Utilities which currently adds a host of new features for graphics management. These features include the ability to compare graphics in a file system against your FM source files, to see what is used and where. For more information, see:
    http://www.weststreetconsulting.com/WSC_Utils.htm
    Unlike our other plugins, this one is not structure-oriented and can be used on any FM 7, 8, or 9 file.
    Thanks,
    Russ Ward
    Owner, WSC

    [email protected] schrieb:
    > You can download it here:
    Hi.
    Doesn't work for me on Windows. Calls to LrTasks.execute() in
    LRMogrifyExportTask.lua fail. I spent quite some time on it. Quotation
    of file paths really introduces trouble. Seems there is some problem
    with quotation mark matching. If you use only one pair of them,
    everything is fine. When there are multiple pairs, things get quite
    strange...
    For example, these command strings are supposed to work:
    c:/somepath/someexecutable c:/anotherpath/file
    "c:/some path/someexecutable" c:/anotherpath/file
    c:/somepath/someexecutable "c:/another path/file"
    If I quote both paths, blanks in the first path don't get escaped. Even
    worse, I don't know of any other way to escape blanks here than use
    quotation marks. Something like "\ " -- no chance(?). I even had a look
    at the lua.org source code. Their os.execute() is mapped to ISO/ANSI C's
    system() call. No idea what LrTasks.execute() does.
    My suggested work-around would be like this, as LR at least allows use
    of native file system calls:
    -- LRMogrifyExportTask.lua --
    -- Run Mogrify
    local command = '"' .. opts.path .. '" ' .. commandLine
    -- added
    local realCommand = command
    if WIN_ENV == true then
    -- default folder on Windows is user dir -> good
    local batchFileName = "lr_mogrify_runner.bat"
    io.output(batchFileName)
    io.write(command .. '\n')
    io.close()
    realCommand = '"' .. batchFileName .. '"'
    end
    -- /added
    -- changed
    if LrTasks.execute(realCommand) ~= 0 then
    -- /changed
    Herb

  • Running the Web Crawler with a new plugin (sample HTMLMetatagFilter)

    Hi,
    I tried the steps described from the guide: http://docs.oracle.com/cd/E40518_01/ias.310/ias_webcrawler/toc.htm#Running%20the%20Sample%20Web%20Crawler%20Plugin
    These are the steps that I perform:
    1. Open the sample plugin project with Eclipse
    2. Build the sample plugin from Eclipse
    https://dl.dropboxusercontent.com/u/21502321/Endeca/Captura.PNG
    3. Add the pluging to the IAS lib directory (directory called with the same name of the jar, filter-htmlmetatags, which contains the jar file generated and the plugin.xml file)
    4. Activate the plugin for the Web Crawler (copy the plugin.includes and plugin.excludes properties from default.xml to site.xml in both polite-crawl and non-polite-crawl directories)
    5. Run the Web Crawler with a new plugin (sample plugin from the guide called HTMLMetatagFilter)
    And when I run the web crawler I get the follow error:
    c:\Oracle\Endeca\IAS\3.1.0\bin>web-crawler.bat -c c:\Oracle\Endeca\IAS\workspace\conf\web-crawler\polite-crawl -d 0 -s c:\Oracle\Endeca\IAS\workspace\conf\web-crawler\default\endeca.lst
    INFO    2013-12-03 20:18:46,104 0       com.endeca.eidi.web.Main        [main]
    Reading seed URLs from: c:\Oracle\Endeca\IAS\workspace\conf\web-crawler\default\endeca.lst
    INFO    2013-12-03 20:18:46,104 0       com.endeca.eidi.web.Main        [main]
    Seed URLs: [http://www.oracle.com/]
    ERROR   2013-12-03 20:18:46,354 250     com.endeca.eidi.web.Main        [main]
    Crawler failed on crawler initialization. Shutting down.
    java.lang.UnsupportedClassVersionError: com/endeca/eidi/web/parse/HTMLMetatagFilter : Unsupported major.minor version 51.0
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
            at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
            at org.apache.nutch.plugin.Extension.getExtensionInstance(Extension.java:156)
            at org.apache.nutch.parse.ParseFilters.getExtensionList(ParseFilters.java:47)
            at com.endeca.eidi.web.process.ExtensionInstances.<init>(ExtensionInstances.java:52)
            at org.apache.nutch.parse.ParseFilters.<init>(ParseFilters.java:33)
            at com.endeca.eidi.web.UrlProcessor.<init>(UrlProcessor.java:82)
            at com.endeca.eidi.web.Crawler.<init>(Crawler.java:81)
            at com.endeca.eidi.web.Main.main(Main.java:140)
    Crawler failed on crawler initialization.
    java.lang.UnsupportedClassVersionError: com/endeca/eidi/web/parse/HTMLMetatagFilter : Unsupported major.minor version 51.0
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
            at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
            at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
            at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
            at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
            at org.apache.nutch.plugin.Extension.getExtensionInstance(Extension.java:156)
            at org.apache.nutch.parse.ParseFilters.getExtensionList(ParseFilters.java:47)
            at com.endeca.eidi.web.process.ExtensionInstances.<init>(ExtensionInstances.java:52)
            at org.apache.nutch.parse.ParseFilters.<init>(ParseFilters.java:33)
            at com.endeca.eidi.web.UrlProcessor.<init>(UrlProcessor.java:82)
            at com.endeca.eidi.web.Crawler.<init>(Crawler.java:81)
            at com.endeca.eidi.web.Main.main(Main.java:140)
    I do not understand why this error appears and why there is a problem with version?? How can I make this sample work?
    Note: this is my configuration system:
    * OEID 3.1
    * IAS installed with Jetty
    * Windows 7 x64
    * Any server running (endeca_server_domain, endeca_studio_domain, endeca_ps_domain)
    * Endeca IAS service running

    I'm using Java 6 update 43 for all Endeca 3.1 products, because is the recomended version to use. I did an installation with Java 7u45 in other machine and Endeca did not works well. (https://forums.oracle.com/thread/2607872)
    But I know when is installed the Integrator, it has integrated Java 7. And I think when I generate the .jar file from the Integrator, it has data with Java 7, so, when I run the Web Crawler with this plugin from the command prompt of Windows, the crawler Installation works with Java 6 (which I already installed).
    So, what should I do if all endeca 3.1 (except Integrator) has to work with java 6u43 and the Integrator generates files with java 7?

  • New plugin not work on apache2.0.39

    the new plugin in weblogic6.1 sp3 for win2000 is not work on apache2.0.39,but work
    on apache2.0.36.how to get the plugin work for 2.0.39?
    thank!

    Your reply did not help me access an update to JAVA to work with 10.8.3 to play JAVA related games. This is a REAL PROBLEM! As I subscribe to game websites and my family cannot play these games. I have contacted Apple Support and we tried uninstalling JAVA and reinstalling it from JAVA .com. We made sure my computer (IMAC) was set up to accept JAVA was turned on and I still have the same problem. JAVA related games will not play. The error message says "An updated JAVA has not been detected" So what am I to do? Who can help me with this type of problem? Apple Support asked me to contact JAVA by phone 1-800-223-1711 but they do not have any phone support. I was directed to a site called Live Support" and they charge $80.00 to resolve problems for an Apple computer or $1.00 a minute. Great choices! I accepted this offer however Apple will not allow third party developers to help. Do you have any ideas that will really help me?

  • New plugin Dimensions Extension 11.1.1.4.37.59.48 in Updates - What is it

    New plugin Dimensions Extension 11.1.1.4.37.59.48 has appeared in SQLDeveloper Updates - What is it
    When installed, can see no extra options (assuming it is installing correctly) and the Visit Homepage gives no information
    Just curious
    Thanks
    Lawrence

    Dimensions is a Configuration Management tool -version control. If you don't have Dimensions, you don't need the SQL Developer plugin.

  • How do I update InDesign CS5 to get new plugins or Get a CS5.5 update.

    How do I update InDesign CS5 to get new plugins or Get a CS5.5 update.

    You probably don't. CS5.5 was a paid upgrade, not free, and it is no longer distributed by Adobe or resellers.

  • How to Create a new plugin in Strobe Media PlayBack?

    Hai
                  i want to create a plugin for swf,and added into the Strobe media Playback.i follow this link:http://osmf.org/dev/osmf/OtherPDFs/osmf_plugin_dev_guide.pdf
    But my plugin is Not Loaded ,i dunno wats the reason.Anybody kindly Help me,am new for creating a plugin.
    Thanks in advance!
    swfPlugin.as
    package
              import flash.display.Sprite;
              import com.realeyes.osmf.plugin.swfPluginInfo;
    public class swfPlugin extends Sprite
              public function swfPlugin()
                        super();
                        _pluginInfo = new swfPluginInfo();
              // OSMF will invoke this getter to retrieve the plug-in's
              // PluginInfo object.
              public function get pluginInfo():swfPluginInfo
                        return _pluginInfo;
              private var _pluginInfo:swfPluginInfo;
    swfPluginInfo.as
    package com.realeyes.osmf.plugin
              import org.osmf.media.PluginInfo;
              import org.osmf.media.MediaElement;
              import org.osmf.media.MediaResourceBase;
              import org.osmf.media.MediaFactoryItem;
              import org.osmf.media.URLResource;
              import org.osmf.elements.VideoElement;
              public class swfPluginInfo extends PluginInfo
              public function swfPluginInfo()
                        var items:Vector.<MediaFactoryItem> = new Vector.<MediaFactoryItem>();
                        // Create the MediaFactoryItem and add to our list of items.
                        var item:MediaFactoryItem = new MediaFactoryItem
                                  ( "com.realeyes.osmf.plugins.WatermarkPlugin"
                                            , canHandleResourceFunction
                                            , mediaElementCreationFunction
                        items.push(item);
                        // Pass the list to the base class.
                        super(items);
              private function canHandleResourceFunction(resource:MediaResourceBase):Boolean
    var result:MediaElement;
                        // Only return true if the resource is an URLResource...
                        var urlResource:URLResource = new URLResource("http://vm2.gloriatech.in/android/load6.swf");
                                  // ... and if the URL starts with "rtmp".
                                  return result = urlResource as MediaElement;
              private function mediaElementCreationFunction():MediaElement
                        return new VideoElement();

    Hai
                  i want to create a plugin for swf,and added into the Strobe media Playback.i follow this link:http://osmf.org/dev/osmf/OtherPDFs/osmf_plugin_dev_guide.pdf
    But my plugin is Not Loaded ,i dunno wats the reason.Anybody kindly Help me,am new for creating a plugin.
    Thanks in advance!
    swfPlugin.as
    package
              import flash.display.Sprite;
              import com.realeyes.osmf.plugin.swfPluginInfo;
    public class swfPlugin extends Sprite
              public function swfPlugin()
                        super();
                        _pluginInfo = new swfPluginInfo();
              // OSMF will invoke this getter to retrieve the plug-in's
              // PluginInfo object.
              public function get pluginInfo():swfPluginInfo
                        return _pluginInfo;
              private var _pluginInfo:swfPluginInfo;
    swfPluginInfo.as
    package com.realeyes.osmf.plugin
              import org.osmf.media.PluginInfo;
              import org.osmf.media.MediaElement;
              import org.osmf.media.MediaResourceBase;
              import org.osmf.media.MediaFactoryItem;
              import org.osmf.media.URLResource;
              import org.osmf.elements.VideoElement;
              public class swfPluginInfo extends PluginInfo
              public function swfPluginInfo()
                        var items:Vector.<MediaFactoryItem> = new Vector.<MediaFactoryItem>();
                        // Create the MediaFactoryItem and add to our list of items.
                        var item:MediaFactoryItem = new MediaFactoryItem
                                  ( "com.realeyes.osmf.plugins.WatermarkPlugin"
                                            , canHandleResourceFunction
                                            , mediaElementCreationFunction
                        items.push(item);
                        // Pass the list to the base class.
                        super(items);
              private function canHandleResourceFunction(resource:MediaResourceBase):Boolean
    var result:MediaElement;
                        // Only return true if the resource is an URLResource...
                        var urlResource:URLResource = new URLResource("http://vm2.gloriatech.in/android/load6.swf");
                                  // ... and if the URL starts with "rtmp".
                                  return result = urlResource as MediaElement;
              private function mediaElementCreationFunction():MediaElement
                        return new VideoElement();

  • The Firefox plugin page said I needed to install a new plugin for Shockwave Flash, but after doing the installation I checked back to see if the installation took place and the "action" column still says "update now" and potentially vulnerable."

    After downloading the new version of Shockwave
    flash the message in the box said the download was completed; however, the information on the Firefox plugin page keeps saying "potentially vulnerable" and "update now" as though no download took place. I repeated the download 2 more times and got the same results.

    Your plugins list shows outdated plugin(s) with known security and stability risks.
    # Shockwave Flash 10.0 r32
    # Java Plug-in 1.5.0_06 for Netscape Navigator (DLL Helper)
    Update the [[Java]] and [[Flash]] plugin to the latest version.
    See
    http://java.sun.com/javase/downloads/index.jsp#jdk (you need JRE)
    http://www.adobe.com/software/flash/about/
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • Looking for the new plugin for sony alpha r7ii

    anyone know the download whereabouts for new camera raw plugin?

    Camera Raw 8.7.1 is now available
    For CS6 and above. Use DNG Converter for CS3 to CS6.
    Gene

  • How to create a new plugin using Adobe InDesign CS5?

    How to create our own plugin using Adobe InDesign CS5?is there any documents available for this?

    Sure. (Didn't Google find anything?)
    http://www.adobe.com/devnet/indesign/sdk.html
    But you don't "use" InDesign to write plugins. You need a C++ compiler and a lot of programming knowledge and experience with C++. If this means nothing to you, don't look any further -- it's way too complicated to "go and get started" at random. Adobe's documentation is not intended for learners, starters, and people who shrink back at the thought of having to read multiple help documents that are each a couple of megabytes large.
    Using the SDK is so complicated there's even a part of the forum dedicated to it, aptly (and obviously) called InDesign SDK. If you browse the messages in there, you can get an idea of the most common pitfalls and problems.
    If the above scares you off, well, that was fully intentional (sorry, but it is). It's by far easier to write scripts. Scripts have several advantages over plugins:
    1. They are platform independent (Javascripts are; AppleScript is just for Macs and Visual Basic is just for Windows). Plugins are exclusively platform dependent. To write the same plugin for both Windows and for Mac, you have to know all the pitfalls of changing code from one platform to another, and you need a complete working compiler and development system for both platforms.
    2. They are version independent. Simple scripts work on a fairly great range of InDesign versions -- some of my own scripts date back to CS, and are totally or virtually unchanged. It's even possible to force "too old" scripts to work with newer versions.
    3. Scripts can do most of the things a plugin can do. The main difference used to be that plugins allow you to write a fully integrated look-and-feel part of InDesign, but with the advance of ScriptUI and event handlers and menu customization, you come quite far. Only for highly specialized functions you still need a real plugin (custom item integration, custom spell and hyphenation modules, stuff like that).
    4. The scripting community is very active -- it also has a forum of its own, called (well, obviously) InDesign Scripting -- and are a friendly lot, always ready to help. (Unless you whine about how to do every little thing. (That is, I can't stand that personally. Others may not mind.))
    5. Scripting is easy. ... not really, but it is fairly easy, and compared to writing a custom plugin in C++, it's a breeze, a walk in the park, and a summer stroll all rolled into one.

  • Vista brings new plugin headaches?

    With the release of Vista and/or CS3, I'm seeing more support issues for my plugins: New crashes and other regressions.
    Now, of course, this could all be in my code; but the same DLLs are all mature and well tested under XP and other versions of Windows and are not generating support issues there (not to mention on five distinct Mac runtime platforms).
    Any other plugin developers seeing a spike in support problems? Any explanations or specific new issues/workarounds? If so, are they related to Vista in general or CS3 specifically? Is Adobe seeing glitches caused by Vista? Is there a correlation with development systems?
    Don't be afraid to speak out... haha.

    The instructions in http://kb2.adobe.com/cps/404/kb404900.htm state:
    Contact Sheet II and Picture Package
    The ability to create contact sheets and picture packages as a PDF presentation is now available in Adobe Bridge CS4 Output Module. We highly recommend creating your contact sheets and picture packages this way. If you would like to continue using the legacy ContactSheetII and/orPicture Package plug-ins, please follow these steps:
       1. From the Photoshop CS4 install disc, drop the //<language>/Goodies/Optional Plug-Ins/Automate/ContactSheetII plug-in into the //Adobe Photoshop CS4/Plug-ins/Automate folder (this is for both Contact Sheet and Picture Package).
       2. From the Photoshop CS4 install disc, drop the //<language>/Goodies/Presets/Layouts folder into the //Adobe Photoshop CS4/Presets folder and restart Photoshop.
    Optional: To add this legacy functionality back into Bridge (as a menu item), do the following:
       1. From the Photoshop CS4 install disc, drop the //<language>/Goodies/Optional plugins/Bridge Startup Scripts/photoshop_contact_sheet_ii folder and the photoshop_contact_sheet_ii.jsx file into following locations:
              * Mac OS: //Library/Application Support/Adobe/Startup Scripts CS4/Adobe Photoshop/
              * Windows XP: //Program Files/Common Files/Adobe/Startup Scripts CS4/Adobe Photoshop/
              * Windows Vista: //Program Files (x86)/Common Files/Adobe/Startup Scripts CS4/Adobe Photoshop/
       2. Restart Bridge.
    I would assume from the preamble in that Tech Note that they are installed only in the 32-bit version of Photoshop, ie in C:\Program files (x86).
    That means you would need to fire up the 32-bit version of PS to use it.

  • Installation of new plugins

    Hi,
    the installation of the new widget plugins into exclipse  fails with
    "selected archive does not contain an update site. Please select another archive".
    Does anybody know how to solve this issue ?
    Thanks
    Marcus

    Hi,
    I use the newest version of the SAP Enterprise Widget Development Tool.
    The file site.xml is included in the zip.
    Any hints, how to solve the issue ?
    Thanks.
      <?xml version="1.0" encoding="UTF-8" ?>
    -<site>
    - <feature url="features/corp.sap.pal.gadgets.tools.widgetTools_0.12.0.1167.jar" id="corp.sap.pal.gadgets.tools.widgetTools" version="0.12.0.1167">
      <category name="SAP Widget Development Tools" />
      </feature>
    <category-def name="SAP Widget Development Tools" label="SAP Widget Development Tools">
      <description>SAP Widget Development Tools for developing enterprise widgets</description>
      </category-def>
      </site>

  • I have a new plugin showing up: z 4.6.7.5 Does anyone know exactly where it came from and what it is used for?

    I disabled plugin "z 4.6.7.5" because I have no idea where it came from. I have noticed no ill effects, so far.

    I don't know how it got there, but dwarvenhut is correct—it's an extension that doesn't seem to do anything, and it uses a non-existent component (components/f8bd48d8.dll in my case).
    To delete it from the extensions list, delete the folder in the Program Files\Mozilla Firefox\extensions directory; mine was called "{39fdc2ab-b323-a8a8-a497-763ced813cae}".

Maybe you are looking for