Twitter Bird

Extension which returns the Twitter bird icon back

Vad är Twitter Bird?

Twitter Bird är en Chrome-tillägg utvecklad av https://cking.software, och dess huvudfunktion är "Extension which returns the Twitter bird icon back".

Tilläggsskärmbilder

screenshot

Ladda ner Twitter Bird-förlängningens CRX-fil

Ladda ner Twitter Bird-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Replaces the main Twitter icon and favicon icon with the canonical Bird. Opensource project.                    

Grundläggande Information om Tillägg

Namn Twitter Bird Twitter Bird
ID ihahjhhimifemcpmbghgjmniofjchmlh
Officiell webbadress https://chromewebstore.google.com/detail/twitter-bird/ihahjhhimifemcpmbghgjmniofjchmlh
Beskrivning Extension which returns the Twitter bird icon back
Filstorlek 553 KB
Antal Installationer 196
Aktuell Version 1.1
Senast Uppdaterad 2023-08-29
Publiceringsdatum 2023-07-26
Betyg 4.00/5 Totalt 3 Betyg
Utvecklare https://cking.software
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Semper-Viventem/twitter-bird
Hjälpsida URL https://github.com/Semper-Viventem/twitter-bird/issues
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter Bird",
    "description": "Extension which returns the Twitter bird icon back",
    "version": "1.1",
    "action": {
        "default_icon": "images\/icon_512.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "css": [
                "content.css"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/twitter.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "512": "images\/icon_128.png"
    }
}