Profile Search for Instagram (Unofficial)

Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.

Vad är Profile Search for Instagram (Unofficial)?

Profile Search for Instagram (Unofficial) är en Chrome-tillägg utvecklad av http://jowo.co, och dess huvudfunktion är "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Profile Search for Instagram (Unofficial)-förlängningens CRX-fil

Ladda ner Profile Search for Instagram (Unofficial)-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

                                            

Grundläggande Information om Tillägg

Namn Profile Search for Instagram (Unofficial) Profile Search for Instagram (Unofficial)
ID ohbdjjgonipbnlgfleogigljggmoogap
Officiell webbadress https://chrome.google.com/webstore/detail/profile-search-for-instag/ohbdjjgonipbnlgfleogigljggmoogap
Beskrivning Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.
Filstorlek 26.26 KB
Antal Installationer 501
Aktuell Version 1.5
Senast Uppdaterad 2022-02-05
Publiceringsdatum 2020-08-17
Betyg 5.00/5 Totalt 10 Betyg
Utvecklare http://jowo.co
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://jowo.co
Hjälpsida URL https://jowo.co/apps/forms/support/index.html
URL till Sekretesspolicy Sidan https://jowo.co/apps/privacypolicyterms/privacy.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Profile Search for Instagram (Unofficial)",
    "description": "Chrome Extension for highlighting any Instagram username text on any website & right clicking to open that user's Instagram profile.",
    "version": "1.5",
    "icons": {
        "128": "images\/icons\/icon128.png",
        "48": "images\/icons\/icon48.png",
        "16": "images\/icons\/icon16.png"
    },
    "browser_action": {
        "default_icon": "images\/icons\/icon16.png",
        "default_popup": "html\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/eventPage.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "content.js",
        "content.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instagram.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "all_frames": true
        }
    ],
    "options_page": "html\/options.html",
    "permissions": [
        "storage",
        "contextMenus",
        "https:\/\/*.instagram.com\/*"
    ]
}