Abstract Browsing
Abstract browsing
Cos'è Abstract Browsing?
Abstract Browsing è un'estensione di Chrome sviluppata da https://www.newrafael.com, e la sua funzione principale è "Abstract browsing".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Abstract Browsing
Scarica i file di estensione Abstract Browsing in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Abstract Browsing |
ID | nmkbjeagaobhphiipgigbjhligebkfcg |
URL Ufficiale | https://chromewebstore.google.com/detail/abstract-browsing/nmkbjeagaobhphiipgigbjhligebkfcg |
Descrizione | Abstract browsing |
Dimensione del File | 38.47 KB |
Conteggio Installazioni | 2,281 |
Versione Corrente | 2.0.0 |
Ultimo Aggiornamento | 2024-01-09 |
Data di Pubblicazione | 2017-12-05 |
Valutazione | 4.48/5 Totale 27 Valutazioni |
Sviluppatore | https://www.newrafael.com |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.newrafael.com |
URL della Pagina di Aiuto | http://www.newrafael.com |
Lingue Supportate | 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" ] } ] } |