Tag Copier

Tag Copier

Allow copying all or only copyright tags from some taggable imageboards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tag Copier",
  "description": "Allow to copy all or only copyright tags from some taggable image boards.",
  "author": "7nik",
  "version": "1.4.1",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.donmai.us/posts/*",
        "*://*.sankakucomplex.com/post/show/*",
        "*://konachan.com/post/show/*",
        "*://konachan.net/post/show/*",
        "*://yande.re/post/show/*",
        "*://art.4otaku.org/*",
        "*://anime-pictures.net/pictures/view_post/*",
        "*://www.pixiv.net/*",
        "*://gelbooru.com/*",
        "*://e-shuushuu.net/image/*",
        "*://www.zerochan.net/*",
        "*://seiga.nicovideo.jp/seiga/*",
        "*://safebooru.org/*",
        "*://lolibooru.moe/post/show*",
        "*://e621.net/post/show/*",
        "*://e921.net/post/show/*",
        "*://nozomi.la/post/*"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/read-storage.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "permissions": [
    "storage",
    "contextMenus",
    "clipboardWrite"
  ],
  "optional_permissions": [
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/read-storage.js",
      "js/write-storage.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{9b740bd1-df6c-4312-b64d-90a5a7819ebd}",
      "strict_min_version": "48.0"
    }
  }
}