2

I have been working on a personal project for a few months. A large majority of my frustration stems from the fact that I am building my own extension from scratch. I am only half way done with the project, and I am nervous that getting the code to port to IE and Chrome won't be as easy as I hoped it would be.

I had initially wanted to use Kynetx for this project, however I was told that it wasn't possible to get your app to fire on all domains. In chatting with Mike Grace, he told me that it IS possible. Can someone explain how?

frosty
  • 21,036
  • 7
  • 52
  • 74

1 Answers1

3

In the dispatch block you can set a domain of

.*

Which in a full ruleset looks like this

ruleset a60x554 {
  meta {
    name "all-domains-dispatch-test"
    description <<
      all-domains-dispatch-test
    >>
    author "Mike Grace"
    logging on
  }

  dispatch {
    domain ".*"
  }

  rule muahahaha {
    select when pageview ".*"
    {
      notify(": )","All your domain belong to us!") with sticky = true;
    }
  }
}

I know this works with the Firefox and Chrome extensions but I have never tested it with an IE extension.

Action shots! alt text

alt text alt text

Mike Grace
  • 16,636
  • 8
  • 59
  • 79
  • 1
    Ha! I was SOO happy when I discovered this back in the day. +1. GREAT ANSWER! Your answers are always so awesomely detailed and awesome awesomeness. – Alex Jan 24 '11 at 04:29
  • Thanks Mike. This is great to have. I love the nintendo reference. – frosty Jan 24 '11 at 20:35
  • 1
    @aaronfrost You bet. Be sure to accept the answer if it successfully answers your question. – Mike Grace Jan 24 '11 at 21:00