Letterblockd
Block Letterboxd users that you don't want to see reviews from
What is Letterblockd?
Letterblockd is a Chrome extension developed by Unknown, and its main feature is "Block Letterboxd users that you don't want to see reviews from".
Extension Screenshots
Download Letterblockd Extension CRX File
Download Letterblockd extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
If you don't want to see content by some user on Letterboxd, then just add them to the list in the options.
Extension Basic Information
Name | Letterblockd |
ID | dkjlmnilbamfppblfkhdmdlonfbodpkf |
Official URL | https://chromewebstore.google.com/detail/letterblockd/dkjlmnilbamfppblfkhdmdlonfbodpkf |
Description | Block Letterboxd users that you don't want to see reviews from |
File Size | 19.3 KB |
Installation Count | 49 |
Current Version | 0.0.0.1 |
Last Updated | 2020-05-25 |
Publish Date | 2020-05-25 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "0.0.0.1", "short_name": "__MSG_appShortName__", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "options_ui": { "page": "pages\/options.html", "browser-style": false, "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/letterboxd.com\/*", "https:\/\/letterboxd.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_start", "all_frames": false } ], "permissions": [ "storage" ], "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |