Reputation: 4881
I have been using the chrome extension called POSTMAN for a little while and wanted to make some changes to it. The developer has helpfully provided the source on https://github.com/a85/POSTMan-Chrome-Extension
The "tool" is available in two forms :
An extension here : https://chrome.google.com/webstore/detail/postman-rest-client/fdmmgilgnpjigdojojpjoooidkmcomcm
A packaged app here : https://chrome.google.com/webstore/detail/postman-rest-client-packa/fhbjgbiflinjbdggehcddcbncdddomop
I am having problems when I try to install these locally (as I would need to do when I change and test them).
In chrome I go to chrome://extensions/ and "Load Unpacked Extensions" one for each of the above as both are in the source from https://github.com/a85/POSTMan-Chrome-Extension
Both seem to load OK without any obvious errors and I can see them in the extensions list on chrome://extensions/
The "extension" version works fine and is visible in the "Chrome App Launcher" however the packaged app version does not show in the "Chrome App Launcher" even though it does show in chrome://extensions/
Any ideas what could be happening here?
Upvotes: 0
Views: 1616
Reputation: 48211
The one you refer to as "extension" is not an extension, but a Chrome App. Chrome Apps (in contrast to Chrome Extensions) show up in the "Chrome App Launcher", so nothing weird there.
The one you refer to as "packaged app" is indeed a Packaged App, which is not a Chrome App, but a legacy form of app.
At the GitHus repo you menton, there are:
So, in WebStore there are :
In repo there are:
Upvotes: 2