Open Issues Need Help
View All on GitHuban extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: Refactor the Reddit extension to move the `stopWords` array from `utils.js` into a separate text file for easier maintenance and addition of new words. Update the `isTitleStopWord` function in `utils.js` to read the stop words from this new file. Add "excellent", "magnificent", "magnificence", "everywhere", and "dungeons" to the stop word list.
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: Implement a mock API provider for the Reddit movie suggestion extension to facilitate development. This involves creating a configurable mock API that can be enabled/disabled via a JSON configuration file (created in a separate task) and returns mock movie data (ID, title, year, rating).
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: Modify the existing Reddit extension to add a new "debugData" property to the "fetchMovieDetails" JSON response. This property should contain two subfields: "provider" (an enum indicating the data source: InMemoryCache, localStorageCache, or OMDb API) and "url" (the OMDb API URL used, or null if not applicable).
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: The task is to modify the Reddit extension to remove emojis from movie titles before querying the OMDb API. This prevents API errors caused by emojis in the search string and ensures accurate IMDb link generation.
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: Implement a caching mechanism using localStorage to store movie details fetched from the OMDb API. The cache key should be generated from the movie title and year, and the cached value should be a JSON object containing the movie's title, IMDb ID, rating, and year. This will improve performance by avoiding redundant API calls for movies already looked up.
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: The task is to expand the existing Reddit extension to include more stop words in its movie title recognition process. This will improve the accuracy of the extension by preventing false positives when identifying movie titles in the /r/MovieSuggestions subreddit. The provided link points to a specific Reddit comment that highlights a case where additional stop words are needed.
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: Modify the Reddit extension to prevent the exclamation mark ('!') from being included as part of movie titles when searching for movie details using the OMDb API. This can be achieved either by removing '!' from movie titles before the API call or by adding '!' to the list of sentence separators.
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page
AI Summary: Rename the function `fetchMovieImdbId` to `fetchMovieDetails` in a Reddit extension that links movie titles in the r/MovieSuggestions subreddit to their IMDb pages using the OMDb API. The function's output is a JSON object containing movie details, not just the IMDb ID.
an extension to recognize movie titles in the MovieSuggestions subreddit and create hyper-links to their IMDb page