diff options
author | sat <sat@FreeBSD.org> | 2006-06-05 18:25:40 +0800 |
---|---|---|
committer | sat <sat@FreeBSD.org> | 2006-06-05 18:25:40 +0800 |
commit | 29649d44c3fc16789f063cc1d54ec6f8c36ef9d0 (patch) | |
tree | db9689e7d84cfc3a389dc536ca51d57147d67d33 /www/xpi-jsview | |
parent | 641e575b976482e2a36aec3de35bb882d1e38035 (diff) | |
download | freebsd-ports-gnome-29649d44c3fc16789f063cc1d54ec6f8c36ef9d0.tar.gz freebsd-ports-gnome-29649d44c3fc16789f063cc1d54ec6f8c36ef9d0.tar.zst freebsd-ports-gnome-29649d44c3fc16789f063cc1d54ec6f8c36ef9d0.zip |
Add port www/xpi-jsview:
All browsers include a "View Source" option, but none of them offer the
ability to view the source code of external files. Most websites store
their javascripts and style sheets in external files and then link to
them within a web page's source code. Previously if you wanted to view
the source code of an external javascript/css you would have to manually
look through the source code to find the url and then type that into
your browser.
Well now there's a much easier way. You can use the JSView extension to
solve the problem. You can access it from the context menu, from the
toolbar, from the view menu, or from the status bar. If the website you
are viewing contains any external js/css files, an icon will appear that
says "CSS", "JS", or both. Each individual file can then be viewed by
clicking on the filename. The file will be opened in a new window. You
can also choose to open all external files by clicking on "View All".
Author: Ron Beckman
WWW: http://www.scorpiondb.com/firefox/extensions/jsview/
Diffstat (limited to 'www/xpi-jsview')
-rw-r--r-- | www/xpi-jsview/Makefile | 21 | ||||
-rw-r--r-- | www/xpi-jsview/distinfo | 3 | ||||
-rw-r--r-- | www/xpi-jsview/pkg-descr | 18 |
3 files changed, 42 insertions, 0 deletions
diff --git a/www/xpi-jsview/Makefile b/www/xpi-jsview/Makefile new file mode 100644 index 000000000000..1b1484fcb3d4 --- /dev/null +++ b/www/xpi-jsview/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: xpi-jsview +# Date created: 5 June 2006 +# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= jsview +PORTVERSION= 1.1.2 +DISTVERSIONSUFFIX= -fx +CATEGORIES= www + +MAINTAINER= infofarmer@FreeBSD.org +COMMENT= Easily view embedded/external JS and CSS + +XPI_ID= {cf15270e-cf08-4def-b4ea-6a5ac23f3bca} +XPI_FILES= chrome/jsview.jar chrome.manifest install.js install.rdf +XPI_DIRS= chrome + +.include "${.CURDIR}/../xpi-adblock/Makefile.xpi" +.include <bsd.port.mk> diff --git a/www/xpi-jsview/distinfo b/www/xpi-jsview/distinfo new file mode 100644 index 000000000000..cd67395f03c3 --- /dev/null +++ b/www/xpi-jsview/distinfo @@ -0,0 +1,3 @@ +MD5 (xpi/jsview-1.1.2-fx.xpi) = a690780fe1384a7bb9dcdeebcbee6469 +SHA256 (xpi/jsview-1.1.2-fx.xpi) = b0086303b2a1303d083b7dc9c0e5330db0afe31e5626fe529a226d8517c4dbc0 +SIZE (xpi/jsview-1.1.2-fx.xpi) = 48004 diff --git a/www/xpi-jsview/pkg-descr b/www/xpi-jsview/pkg-descr new file mode 100644 index 000000000000..d36a263e5ade --- /dev/null +++ b/www/xpi-jsview/pkg-descr @@ -0,0 +1,18 @@ +All browsers include a "View Source" option, but none of them offer the +ability to view the source code of external files. Most websites store +their javascripts and style sheets in external files and then link to +them within a web page's source code. Previously if you wanted to view +the source code of an external javascript/css you would have to manually +look through the source code to find the url and then type that into +your browser. + +Well now there's a much easier way. You can use the JSView extension to +solve the problem. You can access it from the context menu, from the +toolbar, from the view menu, or from the status bar. If the website you +are viewing contains any external js/css files, an icon will appear that +says "CSS", "JS", or both. Each individual file can then be viewed by +clicking on the filename. The file will be opened in a new window. You +can also choose to open all external files by clicking on "View All". + +Author: Ron Beckman +WWW: http://www.scorpiondb.com/firefox/extensions/jsview/ |