-
Notifications
You must be signed in to change notification settings - Fork 337
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't throw 404 if script doesn't exist. #101
Comments
Good call. If I'm reading this right, that'll also remove the requirement of a server, and allow this to work cross-platform and without Ruby as a dependency. 👍 |
Hmm, that would make only the extension (which would be totally rewritten) necessary indeed. Seems like a much more elegant way of solving the problem, but I dont't know if there's any hope for this to be implemented, since the repo is kind of abandoned :( |
That doesn't mean nobody can fork this and make it happen. Even if it sits as a pull request for a while. |
Sure, but look at the PR page: there are some lingering for more than a year :( I think everyone would like to see #56 merged (or at least implemented in some way or another). |
Well in that case, everyone just needs to switch to using the fork. It happens. |
Nevermind, this breaks the plugin, so it won't even work. But it could be fixed if the plugin itself would be updated to use a
$EDITOR "$(find "$HOME/Library/Application Support/Google/Chrome/Default/Extensions/" -name '*dotjs.js')"
try {
$.ajax({
//...
})
}
catch (e) {}
|
W2g |
The filesystem api is only allowed in apps, not extensions. Trying to register it in an extensions manifest results in an error:
The tabs api, however, has some functions to inject js and css, so I made a quick attempt to reproduce dotjs functionality using that: https://github.com/diffsky/chromedotfiles |
Just use filesystem API:
http://developer.chrome.com/apps/fileSystem.html
The text was updated successfully, but these errors were encountered: