Code Monkey home page Code Monkey logo

ichrome's People

Contributors

amkohn avatar gbasin avatar htdvisser avatar irvinext avatar madiele avatar thinkingmedia avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ichrome's Issues

Ugly advertisement at the center of my view

Since a few days ago I'm seeing an ugly advertisement in the first column of my view, just in the middle, screwing up all the layout.

I didn't ask for any PRO feature, and there ain't any new functionality in iChrome, so I guess this is a mistake.

Flash content is not dispayed

I tried to add iframe with my favorite clock in SWF format from my site but it doesn't show. I tried to create separate Web page with it (http://rinaldus.ru/clock.html) and inserted to HTML widget, but it also doesn't show. Is avaiable to display flash content with ichrome?

"migrate my settings" broken

with the V2.1 update, I press "migrate my settings" the button lightens (indicating it was pressed) and nothing happens?
screen shot 2014-05-28 at 9 52 55 pm

[Request] Feedly dropdown selector

Hello,
It's a request to add add dropdown menu for feedly to change the channel (shot articles from) on the fly.

If we disable the editing mode we also loose ability to change the feedly channel.

I have lot's of subscription on feedly, which can be harder for me to track in grouped list

May be some where in the red portion.

Thanks

Cannot launch Google Keep

I found out this weird bug with Google Keep on iChrome yesterday. When you click on the button, it does not launch itself. Further investigation reveals that it does not have a href attribute, hence the problem. What's more, its manifest.json does not contain a launch point either. However, launching Google Keep on vanilla new tab works fine. Can you reproduce this issue on your machine?

version: 33.0.1750.29 beta Linux

Bookmarks widget

With a recent update the bookmarks widget only displays:
Template "widget.chrome_bookmarks" not found!

Hacker News widget

Would like to see a hacker news widget that's closer to the HN homepage for order, and includes links to the article and comments.

I've been using the rss widget, but feedly tends to lag, and when I click through on the header, I have to hunt for the articles/comments I thought looked interesting.

Corrupted calendar options

screenshot from 2015-04-04 21-13-32

There is no option to chose a calender, therefore it only displays "Glass developer hangout [...]"
I guess a picture would serve as a better description...

Clock widget countdown renders itself non-functional if the clock is supposed to ring while the new tab page isn't open

Steps to reproduce:

Start an alarm with the clock widget (set it at 10 seconds or so)
Navigate to another page. Ensure there are no new tab pages open.
Wait until after the alarm is supposed to go off
When you visit the new tab page again, the clock widget will be gone (replaced with a small block), and it will not be possible to remove it.

Here is a video illustrating the issue using stock unmodified iChrome (current version, 3.0.0.10) with just the clock widget enabled: https://www.youtube.com/watch?v=at8QBJeEu6A

Can`t log inn

I try to log inn, but the callback dosn`t work

I get to api.ichro.me/oauth/v1/.......

Feature Request: Multiple gmail accounts

Right now iChrome shows a link for gmail on the top bar that points to

https://mail.google.com/mail

A lot of people have multiple gmail accounts. One for personal and one for work. These have different email addresses, but they can easily be accessed following this URL pattern.

https://mail.google.com/mail/u/0
https://mail.google.com/mail/u/1
https://mail.google.com/mail/u/2

The above would be for a user with 3 accounts linked to gmail.

I would like to be able to have my personal and work emails on the top bar. If that's possible?

Thanks,

Load requireJS modules into correct context.

Here is a github project that shows how to correctly use requireJS with Google Chrome Extensions.

https://github.com/salsita/chrome-extension-skeleton

I ran into an issue this morning with my own extension trying to get it work with require. Modules were being loaded into the web page's context and not the extensions context.

I'm not sure if this will effect iChrome, because the webpage belongs to iChrome. Anyway, it's probably better to load modules correctly.

Here's the code that fixes the issue. This should be run before require.config in main.js.

(function() {
    var global = this;
    require.load = function (context, moduleName, url) {
        var xhr;
        xhr = new XMLHttpRequest();
        xhr.open("GET", chrome.extension.getURL(url) + '?r=' + new Date().getTime(), true);
        xhr.onreadystatechange = function (e) {
            if (xhr.readyState === 4 && xhr.status === 200) {
                eval.call(global, xhr.responseText + '\n//@ sourceURL=' + url);
                context.completeLoad(moduleName)
            }
        };
        xhr.send(null);
    };
})();

Load templates from separate files.

Templates have all been placed in the "index.html" creating a large difficult file to manage.

Put each template into it's own file and load from there.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.