Change Background Color with Marketing Link

Changes the background color of a website and adds a link to a marketing agency.

作者
Dola Chowdhury
今日安裝
0
安裝總數
7
評價
0 0 0
版本
1.0
建立日期
2023-12-19
更新日期
2023-12-19
尺寸
841 位元組
授權條款
https://markertion.com/about/
腳本執行於
所有網站

Our Story
Markertion (Creative Digital Marketing Agency) journey started from 27th July 2018. We have so far been able to do projects with all our clients very faithfully as per their needs.

We provide Web Design, Graphic Design, UI & UX Designer, Video Editing, and All Digital Marketing like Search Engine Optimization (SEO), Social media marketing (SMM), Lead Generation, Google Ads, etc. solutions.

You will always get help from us at the fastest possible time. We provide 24 hours client support by our experienced support team for any issue.

We always put the client first, with around 35 skilled people working tirelessly across all departments of our agency. We undertake projects as per the client’s needs.

We first communicate very well with the client and try to understand what the client wants and needs and accordingly we proceed with the project. All the clients we have worked with so far have given us great feedback. We never take on a project that we can’t handle.

// ==UserScript==
// @name Change Background Color with Marketing Link
// @namespace https://markertion.com/about/
// @version 1.0
// @description Changes the background color of a website and adds a link to a marketing agency.
// This script enhances the user experience by introducing a light blue background color
// and providing a quick link to a marketing agency for users interested in marketing services.
// @author Dola Chowdhury
// @license https://markertion.com/about/
// @match *://*/*
// @grant none
// ==/UserScript==

(function() {
'use strict';

// Your script code goes here

// Change the background color to light blue
document.body.style.backgroundColor = 'lightblue';

// Create a link to the marketing agency website
var marketingLink = document.createElement('a');
marketingLink.href = 'https://markertion.com/about/';
marketingLink.textContent = 'Visit our marketing agency';

// Add the link to the body of the webpage
document.body.appendChild(marketingLink);

})();