Change Background Color with Marketing Link

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

作者
Dola Chowdhury
日安装量
0
总安装量
8
评分
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);

})();