Browser extension to hide view-reducing screen junk from websites.
Browse Source

Set extension icon

Does Chromium not support svg icons? Works in Firefox.
tags/v1.2.0
Gerben 6 years ago
parent
commit
39afbeb177
3 changed files with 5 additions and 2 deletions
  1. +1
    -1
      extension/icon_disabled.svg
  2. +1
    -1
      extension/icon_enabled.svg
  3. +3
    -0
      extension/manifest.json

+ 1
- 1
extension/icon_disabled.svg View File

@@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1" viewBox="0 0 20 20">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1" viewBox="0 0 20 20" width="20" height="20">
<defs>
<clipPath id="b">
<use width="100%" height="100%" xlink:href="#a"/>


+ 1
- 1
extension/icon_enabled.svg View File

@@ -1,4 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1" viewBox="0 0 20 20">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1" viewBox="0 0 20 20" width="20" height="20">
<defs>
<clipPath id="b">
<use width="100%" height="100%" xlink:href="#a"/>


+ 3
- 0
extension/manifest.json View File

@@ -2,6 +2,9 @@
"name": "bannerbanner",
"description": "Hide view-reducing screen junk from websites.",
"version": "1.1.0",
"icons": {
"48": "/icon_disabled.svg"
},
"page_action": {
"browser_style": true,
"default_title": "Ban banners",


Loading…
Cancel
Save