Abstract Browsing
Abstract browsing
Wat is Abstract Browsing?
Abstract Browsing is een Chrome-extensie ontwikkeld door https://www.newrafael.com, en de belangrijkste functie is "Abstract browsing".
Extensie Screenshots
Download het CRX-bestand van de extensie Abstract Browsing
Download Abstract Browsing-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Abstract Browsing |
ID | nmkbjeagaobhphiipgigbjhligebkfcg |
Officiële URL | https://chromewebstore.google.com/detail/abstract-browsing/nmkbjeagaobhphiipgigbjhligebkfcg |
Beschrijving | Abstract browsing |
Bestandsgrootte | 38.47 KB |
Aantal Installaties | 2,281 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2024-01-09 |
Publicatiedatum | 2017-12-05 |
Beoordeling | 4.48/5 Totaal 27 Beoordelingen |
Ontwikkelaar | https://www.newrafael.com |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | http://www.newrafael.com |
Help Pagina-URL | http://www.newrafael.com |
Ondersteunde Talen | 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" ] } ] } |