Sourcing Secret Chrome Extension

This extension auto-populate description text.

Wat is Sourcing Secret Chrome Extension?

Sourcing Secret Chrome Extension is een Chrome-extensie ontwikkeld door http://sourcingsecret.com, en de belangrijkste functie is "This extension auto-populate description text.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Sourcing Secret Chrome Extension

Download Sourcing Secret Chrome Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Sourcing Secret Chrome Extension Sourcing Secret Chrome Extension
ID indglgdhbhcmmkeflbmbiahcdkdmncac
Officiële URL https://chrome.google.com/webstore/detail/sourcing-secret-chrome-ex/indglgdhbhcmmkeflbmbiahcdkdmncac
Beschrijving This extension auto-populate description text.
Bestandsgrootte 60.73 KB
Aantal Installaties 187
Huidige Versie 1.7
Laatst Bijgewerkt 2018-10-12
Publicatiedatum 2018-10-12
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar http://sourcingsecret.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "icons": {
        "128": "icon_128.png"
    },
    "name": "Sourcing Secret Chrome Extension",
    "short_name": "SSCE",
    "description": "This extension auto-populate description text.",
    "version": "1.7",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.amazon.com\/gp\/product\/*",
                "https:\/\/www.amazon.com\/*\/dp\/*",
                "https:\/\/www.amazon.com\/dp\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/app.sourcingsecret.com\/*"
    ]
}