This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2012-01-23 05:49:04

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Is it possible... [Chrome extension]

To create a web address, which can only be access if a certain plugin is installed?  It would be very useful for me.  smile 

Thanks!


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#2 2012-01-23 05:54:38

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

well maybe the web site can hide it's contents and display a message to say the plugin is required... the plugin can jsut show the contents of the site... may require a div tag around the whole page though lol


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#3 2012-01-23 06:10:21

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Is it possible... [Chrome extension]

nathanprocks wrote:

well maybe the web site can hide it's contents and display a message to say the plugin is required... the plugin can jsut show the contents of the site... may require a div tag around the whole page though lol

That's not what I want to do - I want to create a web-domain which only works if they are using my plugin, which
1) Saves me from having to pay
2) Leaves me with a perfect workspace  smile

Last edited by ssss (2012-01-23 06:11:23)


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#4 2012-01-23 06:11:56

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

u mean like getting a domain name for free but only works with a plugin?


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#5 2012-01-23 06:13:17

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Is it possible... [Chrome extension]

nathanprocks wrote:

u mean like getting a domain name for free but only works with a plugin?

hey!  I work with what I have!  smile
And yeah, pretty much.  I know chrome has the
"chrome://chrome-urls/"   address, and i would like to do something similar  smile


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#6 2012-01-23 06:19:18

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

ssss wrote:

nathanprocks wrote:

u mean like getting a domain name for free but only works with a plugin?

hey!  I work with what I have!  smile
And yeah, pretty much.  I know chrome has the
"chrome://chrome-urls/"   address, and i would like to do something similar  smile

ok i will quickly make up something random as an example because i am bored  smile


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#7 2012-01-23 06:29:30

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Is it possible... [Chrome extension]

nathanprocks wrote:

ssss wrote:

nathanprocks wrote:

u mean like getting a domain name for free but only works with a plugin?

hey!  I work with what I have!  smile
And yeah, pretty much.  I know chrome has the
"chrome://chrome-urls/"   address, and i would like to do something similar  smile

ok i will quickly make up something random as an example because i am bored  smile

lol.


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#8 2012-01-23 06:38:49

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

here is the packed version and here is the unpacked version... (they both still do the same)


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#9 2012-01-23 06:43:32

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Is it possible... [Chrome extension]

whats the url to use?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#10 2012-01-23 06:46:08

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

in the manifest.json file i put

Code:

{
  "name": "Test",
  "description": "test thing",
  "version": "1",
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "unlimitedStorage",
    "notifications"
  ]
}

... just change index.html to the file name... also, PHP won't work with this unless it is hosted


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#11 2012-01-23 06:47:32

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Is it possible... [Chrome extension]

nathanprocks wrote:

in the manifest.json file i put

Code:

{
  "name": "Test",
  "description": "test thing",
  "version": "1",
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "unlimitedStorage",
    "notifications"
  ]
}

... just change index.html to the file name... also, PHP won't work with this unless it is hosted

I saw all that.  but i wanted to know what to type in the URL bar?


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#12 2012-01-23 06:55:16

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

ssss wrote:

nathanprocks wrote:

in the manifest.json file i put

Code:

{
  "name": "Test",
  "description": "test thing",
  "version": "1",
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "unlimitedStorage",
    "notifications"
  ]
}

... just change index.html to the file name... also, PHP won't work with this unless it is hosted

I saw all that.  but i wanted to know what to type in the URL bar?

oh right... first... go to chrome://extensions and in the developer mode thing, click the arrow next the the extension and copy the ID and then go to chrome-extension://ID/index.html... for me it was chrome-extension://hddkgibikcampbdcmgkoaiobegelpdea/index.html


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#13 2012-01-23 06:57:48

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: Is it possible... [Chrome extension]

nathanprocks wrote:

ssss wrote:

nathanprocks wrote:

in the manifest.json file i put

Code:

{
  "name": "Test",
  "description": "test thing",
  "version": "1",
  "app": {
    "launch": {
      "local_path": "index.html"
    }
  },
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "unlimitedStorage",
    "notifications"
  ]
}

... just change index.html to the file name... also, PHP won't work with this unless it is hosted

I saw all that.  but i wanted to know what to type in the URL bar?

oh right... first... go to chrome://extensions and in the developer mode thing, click the arrow next the the extension and copy the ID and then go to chrome-extension://ID/index.html... for me it was chrome-extension://hddkgibikcampbdcmgkoaiobegelpdea/index.html

EDIT: ... also a much easier way is to open a new tab and select the app from that page

*realises he didn't edit the post and created a new post instead*

Last edited by nathanprocks (2012-01-23 06:58:39)


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#14 2012-01-23 10:26:04

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Is it possible... [Chrome extension]

You could send a POST or GET message to the website from the plugin, and if the message is correct, then you can view the site.

Offline

 

#15 2012-01-23 19:22:40

ssss
Scratcher
Registered: 2007-07-29
Posts: 1000+

Re: Is it possible... [Chrome extension]

nathanprocks wrote:

nathanprocks wrote:

ssss wrote:


I saw all that.  but i wanted to know what to type in the URL bar?

oh right... first... go to chrome://extensions and in the developer mode thing, click the arrow next the the extension and copy the ID and then go to chrome-extension://ID/index.html... for me it was chrome-extension://hddkgibikcampbdcmgkoaiobegelpdea/index.html

EDIT: ... also a much easier way is to open a new tab and select the app from that page

*realises he didn't edit the post and created a new post instead*

tongue   I thought you meant the extension thing, wasn't sure.   tongue
I want to use a customised URL.  I'll see if I can work on Magnies idea, because I do have a host.  I just wanted to create a URL that was my choice.  smile

Thanks anyway!  smile


Hey.  It's me SSSS, back from the dead!  smile

Offline

 

#16 2012-01-25 22:57:02

lallaway12
Scratcher
Registered: 2012-01-04
Posts: 500+

Re: Is it possible... [Chrome extension]

java wrote:

To deploy your Java Web Start application, first compile the source code and package it as a JAR file.l

hmm we could make a web page but a download needed and some of the site and most of it needing a download

Edit: you can not do that you need to learn how to do this unless you make most of the site a online program or make a plugin that looks at what plugin you are useing or the desktop program you are useing such as firedust do not use this make your own the best thing to do is clip (looks like dip but it is c l i p) the plugin to the web site

P.S. are you any good at programing on scratch made any apps give me them here and help here : LALLAWAY OS

Last edited by lallaway12 (2012-02-11 01:34:57)


http://i49.tinypic.com/2re4ied.png

Offline

 

Board footer