Abstract Browsing
Abstract browsing
What is Abstract Browsing?
Abstract Browsing is a Chrome extension developed by https://www.newrafael.com, and its main feature is "Abstract browsing".
Extension Screenshots
Download Abstract Browsing Extension CRX File
Download Abstract Browsing 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
Abstract Browsing is an extension that turns any website into a colorful abstract composition. You can surf the web as usual, links remain active. You can turn the extension on or off at any moment. Collection of Stedelijk Museum Amsterdam For personal use only: https://creativecommons.org/licenses/by-nc/4.0/ An art project by Rafaël Rozendaal http://www.newrafael.com Code by Reinier Feijen http://www.boxofchocolates.nl
Extension Basic Information
Name | Abstract Browsing |
ID | nmkbjeagaobhphiipgigbjhligebkfcg |
Official URL | https://chromewebstore.google.com/detail/abstract-browsing/nmkbjeagaobhphiipgigbjhligebkfcg |
Description | Abstract browsing |
File Size | 38.47 KB |
Installation Count | 2,281 |
Current Version | 2.0.0 |
Last Updated | 2024-01-09 |
Publish Date | 2017-12-05 |
Rating | 4.48/5 Total 27 Ratings |
Developer | https://www.newrafael.com |
[email protected] | |
Payment Type | free |
Extension Website | http://www.newrafael.com |
Help Page URL | http://www.newrafael.com |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Abstract Browsing", "version": "2.0.0", "manifest_version": 3, "description": "Abstract browsing", "homepage_url": "http:\/\/www.abstractbrowsing.net", "author": "Rafa\u00ebl Rozendaal & Reinier Feijen", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "permissions": [ "tabs", "activeTab", "storage", "scripting" ], "host_permissions": [ "*:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "action": { "name": "Start Abstract Browsing", "default_icon": "abstract-yes.png", "icons": [ "abstract-yes.png", "abstract-no.png" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "hide.css" ], "js": [ "config.js", "check.js", "jquery-2.1.1.min.js" ] }, { "matches": [ "*:\/\/chrome.google.com\/webstore*" ], "css": [ "general.css" ] } ] } |